when using regular expressions, it is found that matching starts with the next word of the matched word. How can I get him to look for it according to the index order of the string?
for example: "SegmentFault is a good forum"
I write regular expressions: [X {4e00}-x {9fa5}] {2}
can match: "Yes", "good", "Forum"
but I want to match today: "Yes", "one", "good", "good comment" and "Forum"
what method can be used to achieve this?