String conditons

Hi
I need to check the string contains decimal and numerical value
string y = “23.45”== true;
string y = “7865”==true,
string y = “g4949”== false,
string y= “%”==false

Thanks and Regards,
@Santhi

You can use an if condition to check if your string is numerice

IsNumeric(yourString) AND yourSTring.Contains(".")

Thanks,
Prankur

1 Like

@Santhi Here you can have the solution

String.xaml (10.2 KB)

1 Like