I want to delete all strings up to the first space

I want to delete all strings up to the first space and see the second string first.
Ex) I am a boy ->am a boy

Hi @111398

Use below method you will get “am a boy”
str = “I am a boy”
str.Substring(str .IndexOf(" "))

1 Like