Hi, I would like to know how to write an if statement with the condition of a (backslash) being in the string like below:
if ( \backslash\ in [field1] ) {
Do_something {}
}
I have tried:
- if ( "\" in [field1] ) {}
- if ( [\] in [field1] ) {}
but none of it works. I feel like the second option is very close to what works but I dont know the exact syntax. Could somebody help?