aisingapore / TagUI

Free RPA tool by AI Singapore
Apache License 2.0
5.6k stars 580 forks source link

if variable contains variable, always return true #1343

Closed xin911 closed 1 year ago

xin911 commented 1 year ago

a = 'test.csv' if a contains '.csv' //work well. b = '.csv' if a contains b //not work well. . seems always true if a contains 'b' //not work well, seems always true if a contains b+'' //not work well. seems always true

xin911 commented 1 year ago

indexOf instead