❔ Regex to find string between _ or next uppercase letter
Can you help me with regex?
I need to capture these:
This regex works only for strings between underscore, but I need to support also other cases.
Roads_(.*)_.*
Don't have any idea how to fix it. :/4 Replies
Roads_(.+)(_|A-Z).+
something like this?
Maybe Roads_(.+)[_A-Z].+
Check Regex101 and play around with it a littleWas this issue resolved? If so, run
/close
- otherwise I will mark this as stale and this post will be archived until there is new activity./close
Was this issue resolved? If so, run
/close
- otherwise I will mark this as stale and this post will be archived until there is new activity.