|
is a metacharacter. You need to escape it (using \
before it).
> unlist(strsplit("I am | very smart", " \| "))
[1] "I am" "very smart"
> sub(pattern="\|", replacement="*", x="I am | very smart")
[1] "I am * very smart"
Edit: The reason you need two backslashes is that the single backslash prefix is reserved for special symbols such as
(newline) and
(tab). For more information look in the help page ?regex
. The other metacharacters are . | ( ) [ { ^ $ * + ?
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…