Hello all,
RegEx Expressions honestly escape me. I have tried to learn to use them but for some reason the logic to use them doesn't hit home...yet.
I am trying to create a RegEx Expression that will remove trailing zeros.
I have example values like:
AJVC000
AJVC600
AJVC610
AJVC650
What I want are:
AJVC
AJVC6
AJVC61
AJVC65
There are some exceptions like:
AJVC601
In this case I do not want to remove any characters.
Any ideas or suggestions on how to learn to write these expresssions and what do I need to solve my current situation?
Thank you,
Scott