我试图找到我可以在UIPath中使用带有String.Contains条件的Not关键字的语法。
示例:我有以下变量。
strValue =“这是测试”
我想检查变量中是否存在'Test'字样,然后它应该显示一些消息。
我尝试了以下方法,但它没有用。
// Reference the form element
let form = document.getElementById("myForm");
// Submit the form through javascript
// Here you can add your own code, before the actual submitting
document.getElementById("mySubmit").addEventListener("click", function () {
form.submit();
});
答案 0 :(得分:1)
你可以使用indexOf()。如果在字符串中不存在要搜索的值,它将返回-1。
strValue = “This is Test”
var i = strValue.indexOf("Test");
if(i>0){
console.log('Test is present in strValue');
}