Replace Grep替换éüï;等

Replace Grep替换éüï;等,replace,grep,adobe-indesign,diacritics,Replace,Grep,Adobe Indesign,Diacritics,对于我的工作流,我需要用唯一的字符串替换重音字符(在流程的另一个步骤中重新替换) 但在我当前的Grep规则(InDesign的FindChangeList中)中,这不识别重音字母: grep {findWhat:"é"} {changeTo:"!e"} //Doesn't do anything 要验证: grep {findWhat:"\/"} {changeTo:"\+"} //Does work

对于我的工作流,我需要用唯一的字符串替换重音字符(在流程的另一个步骤中重新替换)

但在我当前的Grep规则(InDesign的FindChangeList中)中,这不识别重音字母:

grep    {findWhat:"é"}  {changeTo:"!e"} //Doesn't do anything
要验证:

grep    {findWhat:"\/"} {changeTo:"\+"} //Does work: it replaces a slash with a plus sign.

grep    {findWhat:"e"}  {changeTo:"f"}  //Does work, and does not replace é to f

您是否在更改之前和之后清理首选项


app.findgrepreferences=app.changegrepreferences=null

它对我来说绝对有效,文本和grep搜索都可以替换。您使用的是查找/更改对话还是脚本化GREP?如果是对话,请确保清除“查找格式”,如果是脚本-重置GREP/文本搜索首选项使用unicode值替换更改列表中的
\u00e9
时,它是否有效?如果是这种情况,则使用非标准编码保存更改列表。