I have the input like
1A-2A
I need output has
1-2
We need to remove letters
I have the input like
1A-2A
I need output has
1-2
We need to remove letters
System.Text.RegularExpressions.Regex.Replace(YourString,"[A-Z]","").Tostring
Regards
Gokul
Hi @Arya_Squares,
If A is everywhere then you can replace it like below
("1A-2A").Replace("A",Nothing)
Thanks,
Rajkumar
This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.