Hi there,
I am using Trimleft function to trim a string. However, it trims off one extra character.
To be specific, I have a field with value "BBC Kmlfsgees - LI6 - KE GAIN/LOSS", and I want to trim off "BBC Kmlfsgees - LI6 - " and keep "KE GAIN/LOSS". So I use
TrimLeft([Field1], "BBC Kmlfsgees - LI6 - ")
But the result turns to be "E GAIN/LOSS".
Does anybody know why? In addition, how to fix it? I know that Regex_Replace can do the job. However, can we fix the issue with TrimLeft?
Thank you so much!