I have the following regex: a?\W*?b
and I have a string ,.! ,b
When searching for a match I get ,.! ,b, but not just b as I expect. Why is that? How to modify the regex to get what I need?
Thank you for your help.
| |||||||
feedback
|
|
A lazy quantifier doesn't help here for what you want. Let's see what's happening. The regex engine starts at the beginning of the string. First tries to match Then, there is a lazy It then tries to match So the regex works as specified - just not as intended. Now the question is: What exactly do you want the regex to do? For example, if what you really want is: Match
| |||||||
feedback
|
|
The
It helps if you give more examples of possible inputs before anyone sugests a possible solution. | |||||||
feedback
|
|
For example, the following might work: To know better what might solve your problem, you should include more examples. | |||||
feedback
|
|
Your regexp matches the entire string like this:
In your case the regexp matches the entire string, and will therefor not find just the b (it doesn't find several matches of the same part). If you search in a string like ',.! ,db' it will find the b. | |||||
feedback
|
|
Your example doesn't show why the This matches If you only want to match say | |||
|
feedback
|
|
A lazy expression is only lazy from the right, i.e. it will be as short as possible by removing characters on the right, but it will not remove characters on the left. To make the match start later, you need a greedy expression before it that swallows the characters that you don't want to match. Alternatively, as Tim showed, you can make the match start later by only matching the first character and the following separators if the first character exists. | ||||
|
feedback
|
|
It's a mistake to speak of a regex as being greedy or non-greedy. You can use non-greedy quantifiers throughout the regex, but it will still try to start matching at the earliest opportunity, as you discovered. Similarly, a regex that uses only greedy quantifiers isn't guaranteed to return the longest possible match. For example,
...returns In short, there's no such thing as a greedy or non-greedy regex, only greedy or non-greedy quantifiers. | |||
|
feedback
|