What function can I use to get rid of certain characters within a string? I know I can use the REPLACE()
function but there are around 30 variables which will need doing so hoping for a more efficient route.
Example:
What it currently shows:
BasicPay_5000
CarAllowance_6000
Bonus_7000
What I need it to show:
5000
6000
7000
Is there a function that removes all characters up to the pre-defined character? E.g. by writing a statement which removes all characters up to _
(underscore).