正则表达式 – 如何使用R代码找出句子中的连续单词

如何使用R代码找出句子中的连续单词.

例如:

有如下所述的句子,它是以下的输出

sentence <- text[grep("Guarantee of",text)]

“你被要求提交13,863.00卢比的性能保证 – (卢比一万三千八百六十三)”

现在我需要得到“保证”的连续字,即“Rs.13,863.00 / – ”

-谢谢

最佳答案

sentence <- 'You are requested to submit the Performance Guarantee of Rs.13,863.00/-( Rupees thirteen thousand and eight sixty three)';
sub('.*Guarantee\\s+of\\s+([a-zA-Z0-9,._/-]+).*','\\1',sentence);
## [1] "Rs.13,863.00/-"
点赞