Hi, I need to extract text from a field mixed text with number, for example ABC123456 I need ABC
The problem is that length of text varies from record to record. For example:
ABC123456 (ABC is needed)
ABBC554466 (ABBC is needed)
ABBBB457888 (ABBBB is needed)
I think I could use Regex to parse it and I read some posts. When I try .*, it is not working.
Please help. Thank you!