-
Type:
Improvement
-
Resolution: Fixed
-
Priority:
Minor
-
Affects Version/s: None
-
Component/s: None
-
None
entity.hasAttributeLike(org, '%2%') |
These are SQL likes... so underscore is one of any character,
|
% is 0 or many of any character |
|
note the backslash will escape if you want to match an underscore |
or percent, e.g. _ is any one char, and \_ is an underscore. \% is a percent |
|
note that like is more efficient than regex
|
|