Hi,
I want to check following things with string
- CANNOT Begin With ‘#’, or ‘?’ or ‘!’
- CANNOT CONTAIN ‘:’ or ‘|’
Someone please help me in this.
Thank you in advance
Regards,
Suraj
Hi,
I want to check following things with string
Someone please help me in this.
Thank you in advance
Regards,
Suraj
Hello @surajhy
You can try this:
1-) Not YourString.trim.StartsWith(“#”) or Not YourString.trim.StartsWith(“?”) or Not YourString.trim.StartsWith(“!”)
2-) Not yourString.Trim.Contains(“:”) or Not YourString.trim.Contains(“|”)
Let me know if it’s working
Hope it Helps!
Use is match activity and set pattern as ([1]+)(?!.[:|]+).
The result if the activity will be a Boolean value denoting the existence of the match.
#?! ↩︎
Thank you so much Sir
Thank you so much