使用R中的strapplyc提取部分字符串

时间:2016-01-05 09:51:50

标签: r string

我有以下句子,发送:

> "#stance=iPhone : The next revolution of Apple" 

我想提出立场。

使用后

strapplyc(sent, "stance=(.*)", simplify = TRUE)

我获得了以下内容:

> "iPhone : The next revolution of Apple" 

任何人都知道是否有更好的方法来提取出来的" iphone"在这种情况下?

1 个答案:

答案 0 :(得分:1)

试试这个(在此正则表达式中添加:):

strapplyc(sent, "stance=(.*) :", simplify = TRUE)