如何在字符串中包含转义字符\
,后跟*
?
我的错误字符串分配:
commandLine.rmTags = 'tag --remove \* test_file.png'
导致:
Error: '\*' is an unrecognized escape in character string starting "'tag --remove \*"
最终,我需要这样做的原因是从R调用system()
,其参数是上面的字符串。我将这样使用它:
commandLine.rmTags = 'tag --remove \* test_file.png'
system(commandLine.rmTags)
注意:如果您感到好奇,我正在使用jdberry's very cool Tag Terminal application。