Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个这样的字符串:
vmstat_webserver01.20130102
我需要使用正则表达式来选择“_”和“。”之间的值。
我试过这个:
grep("(_.*)+.", name, value=TRUE)
没有工作任何指针?
你可以这样做gsub():
gsub()
name <- 'vmstat_webserver01.20130102' gsub('.*_(.*)\\..*', '\\1', name)