i want to get the number in the last but i do not know how get it ???
Any help ?
I need the easist way to do it
i want to get the number in the last but i do not know how get it ???
Any help ?
I need the easist way to do it
Hi @170290064
How about this Regular expression?
System.Text.RegularExpressions.Regex.Match(YourString,"\d+$").Tostring
Regards
Gokul
Hi @170290064
Use the below regular expressions
System.Text.RegularExpressions.Regex.Matches(yourstringinput.ToString,“((?<=\s+)\d+)”)
Hope it helps!!
This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.