如何在R中的字符串中包含\ *?

时间:2017-03-28 01:57:11

标签: r regex

如何在字符串中包含转义字符\,后跟*

我的错误字符串分配: 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

0 个答案:

没有答案