Pattern in lookbehind
问题 My question is related with lookbehinds , I want to find all the first numbers after the word "this", I have the following data: 188282 this is an example of a number 12345 and 54321 188282 this is an example of a number 1234556 this is an example of a number 1234556 187293 this is another example of a number 74893 and 83978 Pattern: this is an example of a number \d+ Output: 188282 this is an example of a number 12345 and 54321 188282 this is an example of a number 1234556 this is an example