Can we check any variable value starts with a character

Hi all,

Is there any way to check the variable value starts with any character other than numeric value.

Variblename.startswith any character(UR0121234243) this is I required

Thanks in advance.

Hey,
Keep in if else activity

Isnumeric.strVar.substring(strVar.indexof(0)

Where strVar is a string variable
It will work
It will give true or false
Thanks

1 Like

ok will try and update u. Thanks

Hello @saritha

You can try as below or you can use isMatches activity and put the regex in it.

Regex.Ismatch(“your strig”, “[1]+”)


  1. a-zA-Z ↩︎

1 Like

That helped Raunak. thanks a lot
I tried like this
In If condition
(if varible name.IsNumeric)

Thanks again and have a great day.

1 Like

Thanks Rahul, I will try it out…

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