我正在编写 InDesign javascript,它会 GREP 查找/更改 - 实际上现在我只需要找到一些文本并将 grep 在 $2 值中找到的内容保存到我的脚本变量中 - 我的脚本的其他所有内容我都知道该怎么做 - 所以我现在需要的是找出如何获得这 2 美元
简单的例子:
app.findGrepPreferences = NothingEnum.nothing;
app.findGrepPreferences.findWhat = "(\\d)+(\\d)";
found = app.activeDocument.findGrep();
...
found[0].contents; // this store entire string with both digits and plus, and I need only $2 value (second digit in this case)