I have strings like, only some examples:
ABC 213/23213,23
ABC 213/23213,DSF
CVNCVB 3456/324
XCVV 123 /234/324
I need to take out the two first numbers.
213 and 23213
213 and 23213
3456 and 324
123 and 234
Is it a simple way to do this in excel or do I have to do something like a regular expression?
There is always the "/" delimiter between the numbers sometimes a extra space before delimiter.
Excel 2003 vba macro
ABC 213/23213,23
ABC 213/23213,DSF
CVNCVB 3456/324
XCVV 123 /234/324
I need to take out the two first numbers.
213 and 23213
213 and 23213
3456 and 324
123 and 234
Is it a simple way to do this in excel or do I have to do something like a regular expression?
There is always the "/" delimiter between the numbers sometimes a extra space before delimiter.
Excel 2003 vba macro
Comment