Is there any function similar to contains() which is something like doesnotcontain()?
You can reverse the meaning of any expression that returns a boolean result using the ! operator:
!contains(...)
Excellent, thank you
Is there any function similar to contains() which is something like doesnotcontain()?
You can reverse the meaning of any expression that returns a boolean result using the ! operator:
!contains(...)
Excellent, thank you