I have a problem within my database, I would like your help.
I have two types of data, one being 00098 and the other 00101, I would like to remove the 000 and 00, can you tell me in a simple way how this would be possible? These numbers are always on the left.
Alternatively, you could use the String Replacer with the Regular expression pattern 0*([0-9]+) and replacement text $1. This captures all numbers, except leading zeros (if there are any).