如何在 UIPath 中使用 Not contains function in string?
How to use Not contains function in string in UIPath?
我试图找到可以在 UIPath 中将 Not 关键字与 String.Contains 条件一起使用的语法。
示例:我有以下变量。
strValue = “这是测试”
我想检查 'Test' 单词是否不存在于变量中然后它应该会显示一些消息。
我试过下面的方法,但没有用。
Not strValue.Contains(“Test”)
您可以使用 indexOf()。如果字符串中不存在要搜索的值,它将 return -1。
strValue = “This is Test”
var i = strValue.indexOf("Test");
if(i>0){
console.log('Test is present in strValue');
}
我试图找到可以在 UIPath 中将 Not 关键字与 String.Contains 条件一起使用的语法。
示例:我有以下变量。
strValue = “这是测试”
我想检查 'Test' 单词是否不存在于变量中然后它应该会显示一些消息。
我试过下面的方法,但没有用。
Not strValue.Contains(“Test”)
您可以使用 indexOf()。如果字符串中不存在要搜索的值,它将 return -1。
strValue = “This is Test”
var i = strValue.indexOf("Test");
if(i>0){
console.log('Test is present in strValue');
}