How to get the exact number?

i want to get the number in the last but i do not know how get it ???

image

Any help ?

I need the easist way to do it :robot:

image

Hi @170290064

How about this Regular expression?

System.Text.RegularExpressions.Regex.Match(YourString,"\d+$").Tostring

image

Regards
Gokul

Hi @170290064

Try this

Regards,

Hi @170290064

Use the below regular expressions

System.Text.RegularExpressions.Regex.Matches(yourstringinput.ToString,“((?<=\s+)\d+)”)

image

Hope it helps!!

This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.