How to remove only the spaces in front?

After I use some Regex tricks I ended up with this value. I want to remove only the spaces in front and to keep the rest.
What String manipulation method do you recommend me?

image

@Cardon_Cezar If str is a String Type variable, then you can use str.TrimStart

3 Likes

This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.