@langtoi
The developer is aware of this problem.
While this problem remains relevant, you can replace the double quote with a single quote before parsing the string, and then perform the reverse replacement. All this can be done using the "Replace string" action.
How to check if a variable value exists?
-
Help please
How to check if a variable value exists in a file as a resource?
For example:variable: A1 It's ture

variable: A1 It's false

-
var a = RMap(RESOURCE_NAME).indexOf(ELEMENT_VALUE); if(a == -1){ VAR_RESULT = false; }else{ VAR_RESULT = true; }https://community.bablosoft.com/topic/10194/sf_modul - Resource_is_element
-
@tet-vivi said in How to check if a variable value exists?:
var a = RMap(RESOURCE_NAME).indexOf(ELEMENT_VALUE);
Thank you very much.
Are there any ways by using BAS module ?
So sorry, I'm no coding skills -
@linagoode1 either use a third-party module (install it) or use the code
-
Yes, i tried it. It's great!
But I am not success.When a variable value is a string "A1",
I want to check "A1" is or not in a file.
I have set the file as a resource.when the file doesn't have "A1", the result is false,
but when the flie has "A1",the result is still false.