Люди добрые подскажите почему ява скрипт с применением Grep не работает, что я сделал не так?
Скрипт должен заменять время типа 4.40 на 04:40
Код:
//Clear the find/change preferences.
app.findGrepPreferences = NothingEnum.nothing;
app.changeGrepPreferences = NothingEnum.nothing;
app.findChangeGrepOptions.includeFootnotes = true;
app.findGrepPreferences.findWhat = "^(\d)[.](\d)";
app.changeGrepPreferences.changeTo = "0$1:$2";
app.activeDocument.changeGrep();
//Clear the find/change preferences after the search.
app.findGrepPreferences = NothingEnum.nothing;
app.changeGrepPreferences = NothingEnum.nothing;
Скрипт должен заменять время типа 4.40 на 04:40