Hi I have string like A01, AAA, etc.
I want to extract out the alphabet part of it like for A01 => A, AAA => AAA.
I am using [A-Za-z\s] but it does not work. It however works when I try online at
http://gskinner.com/RegExr/
What is missing?
Here an agnostic language regex solution :
C# code :