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

例如:

有一个下面提到的句子,它是以下内容的输出

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


“要求您提交13,863.00卢比的履约保证书((1.383万卢比)”)

现在,我需要获取连续的单词“ Guarantee of”,即“ 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/-"

10-06 01:31