我需要获取一个字符串并提取模式的每个实例,并且只提取模式。
String test = "This is a test string to experiment with regex by separating every instance of the word test and words that trail test";
所以现在模式必须找到单词test
以及它前面和后面没有的任何单词test
。所以基本上它必须导致找到这种模式的 3 个实例。
我期待的3个结果如下:
This is a test string to experiment with regex by separating every instance of the word
test and words that trail
test
我在gskinner上玩过积极的前瞻和消极的前瞻,但还没有运气。