これは私のナスのスクリプトです
if iFound does not contain "NULL" then
//replace "\n" by " & return & " in iFound
replace every occurrence of "\n" in iFound with " & return & "
log "before clicking see text" && iFound
log "not null and clicking"
click iFound
End if
ここで、私のパラメーター iFound は「Cadbury Creme Egg\nMcFlurry」を保持しています
「Cadbury Creme Egg\nMcFlurry」を「Cadbury Creme Egg & return & McFlurry」のように置き換えたい
したがって、置換コマンドを作成しましたが、エスケープ文字「\ n」を無視しています
replace every occurrence of "\n" in iFound with " & return & "
「\n」改行文字を「 & return & 」に置き換えるにはどうすればよいですか