I’m trying to remove letters and other special characters from a string but I’m not finding the best way to do it. I’ve tried the Replace function but it only works with a single character at a time or a complete string.
What I’m trying to accomplish is to only keep the digits on the string, for example, If the user writes ‘123M€’, I want to get the ‘123’, so I can make some math with it later.