Specific text comparision

Hiii,
I want to compare to compare a specific string with an excel
how to do it

Thanks and Regards,
Supriya

Hi @supu123,

Can you provide a scenario or an example.

Thanks,
Despi

Hii,
image this is variable say ‘a’
now b has only “simplex -annav jv through manish sachgeva”
here, i have to check if b is in a if yes then continue
How to do

Thanks and regards,
Supriya

@supu123,

Try below expression to check:

a.tostring.contains(b)

Here, a and b are strings

1 Like

Input1= simplex -annav jv through manish sachgeva
Input2 = South Delhi Municipal Corporation Through Commissioner
If Input2.trim.tolower.contains(Input1.trim.tolower)
Statement : True

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