我希望在 R 中替换字符串末尾的所有 *s。
txt <- c("arm","foot-ha-*","lefroo", "bafoobar*")
gsub("/\\*$/","",txt, perl=TRUE);
我想将 txt 转换为 "arm" "foo-ha-" "lefroo" "bafoobar"
我究竟做错了什么?
谢谢!
我希望在 R 中替换字符串末尾的所有 *s。
txt <- c("arm","foot-ha-*","lefroo", "bafoobar*")
gsub("/\\*$/","",txt, perl=TRUE);
我想将 txt 转换为 "arm" "foo-ha-" "lefroo" "bafoobar"
我究竟做错了什么?
谢谢!