Check string start with any character

Hi,
How to check whether the string start with any character or not.

Hi @Rup_1
yourstring.StartsWith(“yourchar”)

example :

Where :

  • YourString is a string
  • StartWithS is a boolean

@Rup_1

Regex.match(“your strig”, “[1]+”)
Above expression will resturns value if string start with any alphabet


  1. a-zA-Z ↩︎

Hi @Rup_1,
you can check regex using e.g. the below website: