Hi,
I'm trying to workout something and in need assistance on setting RegEx pattern.
What would the regular expression pattern be if I were to match a certain space in a string.
As an example, I have a string:
"Mary had a little lamb"
And I want to match the closest space to the left, after 20th character. This would be the space between the "e" and the "l". So far I have this (?<=\s) and I can't figure out anything else with it.
Thank you.
I'm trying to workout something and in need assistance on setting RegEx pattern.
What would the regular expression pattern be if I were to match a certain space in a string.
As an example, I have a string:
"Mary had a little lamb"
And I want to match the closest space to the left, after 20th character. This would be the space between the "e" and the "l". So far I have this (?<=\s) and I can't figure out anything else with it.
Thank you.