I have these two strings for example: "this_is_a string" and this string "this_is_astring". I want to detect both instance using the %ilike%.
I know how to detect the space:
%ilike% "this_is_a\\sstring"
And it's obvious how to detect without space:
%ilike% "this_is_astring"
But how to mix the two in an expression that detects both at the same time. Sth like:
%ilike% 'this_is_a[\\s-'']string'