Link to home
Start Free TrialLog in
Avatar of sbornstein2
sbornstein2

asked on

ASP.Net/C# - Regex Expression needed

Hello EX,

I need a regex expression in C# that will get the right part of a string from an (_) underscore on.  The string could have multiple underscores.   I don't want to use a regular string parse I need to use regex.

Thanks
Avatar of wdosanjos
wdosanjos
Flag of United States of America image

Please provide some string examples (specially with multiple _) and the expected parsed result.
Avatar of sbornstein2
sbornstein2

ASKER

bym338x2101_aev_bk/lasa/a/230862_15   - want the 15
bym338x2101_aev_bk/lasa/a/230862_1 - want the 1
bym338x2101_aev_bk/lasa/a/230862_103 - want the 103
ASKER CERTIFIED SOLUTION
Avatar of wdosanjos
wdosanjos
Flag of United States of America image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
thank you very much, appreciate your time.  awesome