I have a list of string, some numbers and some mixture of numbers and characters. By using the IsNumeric function, all is fine until i encountered a string “5e1” where the string is recognized as numeric by taking e as exponential.
Is there any workaround to this, besides looping each character in the string? I want to avoid that as some strings numeric, but long which affects the performance.