こんな感じでしょうか?
app.findGrepPreferences = NothingEnum.nothing;
app.findGrepPreferences.appliedParagraphStyle = "manual-no";
app.findGrepPreferences.findWhat = "(?<=\\d{4}[A-Z])[A-Z]";
var findStr = app.activeDocument.findGrep();
var newCode = findStr[0].contents.charCodeAt(0) + 1;
var newStr = String.fromCharCode(newCode);
flag = confirm(findStr[0].contents + " を " + newStr + " に置き換えます。よろしいですか?");
if (flag == true) {findStr[0].contents = newStr;} else {alert("中止しました");exit();}
上のスクリプトでいえば、
findStr[0].contents
が取り出した文字列です。
あえて変数に入れていませんが。。。
[14643] dot (2012/09/19 Wed 10:04)