@Fox
d79e653c-983c-4f27-8c5c-d0eadc4b30e4-image.png
Thank you, my brother, your actions are really extraordinary and able to solve my problem according to my expectations, once again thank you, my brother.
@heshamyassin1 said in please help i want to remove first blank character from the save text:
please help i want to remove first blank character from the save text

[[NEW_VARIABLE]] = " text 34 "
[[NEW_VARIABLE1]] = [[NEW_VARIABLE]].trim()
//or
[[NEW_VARIABLE3]] = [[NEW_VARIABLE]].replace(/ /g, "");
//or
[[NEW_VARIABLE4]] = [[NEW_VARIABLE]].slice(1)