这是我的茄子脚本
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 & "
如何用“& return &”替换“\n”换行符