How to overcome the Case Sensitive

Hi,

i have input data…that input data comes from user end (lower or Upper)…

if i run if condition i am getting error or valuse is missing…

lower/upper = UPPER OR lowercase of user input

any idea…

Thanks
Shyam

Hi @Shyam_Pragash

use like this

Input_var.ToUpper="TEST" |Input_var.ToLower="test"
the above both syntax convert the input string into uppercase or lowercase
use it as per your requirement

Thanks,
Robin

if upper or lower case as user input…

i want text will come in lower case… to processed the code…

Thanks
Shyam

yes it will

use this syntax
Input_var.ToLower="test"