Hello Everyone,
The input is “000023Pooja”, need to split this value.
Output should be “00023” and “Pooja”
Hello Everyone,
The input is “000023Pooja”, need to split this value.
Output should be “00023” and “Pooja”
Hi,
How about the following expression?
arrStr = System.Text.RegularExpressions.Regex.Split("000023Pooja","(?<=\d)(?=\D)")
Regards,
How about this expression
System.Text.RegularExpressions.Regex.Match(YourString,"\d+").Tostring
System.Text.RegularExpressions.Regex.Match(YourString,"\D.*").Tostring
Regards
Gokul
Thank you, I’ll try and let you know.
Thank you. I’ll try and let you know
This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.