I have a set of strings which sometimes start with a “.”
Example String: .TEST.VALUE
I want to remove the very first period, if it exists, but I do not want to remove it from anywhere else on the string. Is this possible, without removing any other period from the string?
doable with adopted trimStart
" .TEST.VALUE".TrimStart({" "c,"."c})
"TEST.VALUE"
1 Like
This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.