Hi all,
I´ve got following problem. I want to cut out digits in a string. The digits are before a specific combination of letters.
Example:
"IBUPROFEN 800MG BAY4G" --> 800
I want to search in the string for the combination "mg" and cut out the digits before it untill the next space.
Is it possible without Regex?
Any ideas?