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
Regex.match(“your strig”, “[1]+”)
Above expression will resturns value if string start with any alphabet
-
a-zA-Z ↩︎
Hi @Rup_1,
you can check regex using e.g. the below website: