指向字符串的指针数组

时间:2019-07-03 05:53:32

标签: c arrays string pointers

我们可以制作一个指针数组,其中每个指针都指向整个字符串吗?对于前。            `

var text = "here is a (very) long link to this article on [Math.random()](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Math/random)";

var regExp = /\[([^\]]+)\]\([^)]+\)/g;

var match;
while (match = regExp.exec(text)) {
     console.log("full match: " + match[0]);
     console.log("keep: " + match[1]);
}

如何制作此类指针的数组?由于我有很多2维数组,因此我想创建一个指针数组(每个指针都具有上述类型),并且每个指针都指向一个2维数组。

0 个答案:

没有答案