I'm using CR XI.
I have a field that contains many pipe characters in it. I want to look for a specific pattern in that field but can't figure out how to search for this properly. This is most likely due to it being a special character (bit operator?).
For example, I want to search for |A| (pipe A pipe). I want to use it in a formula and this is what I have so far:
Was searching this online for a while and tried using brackets as suggested by one of the sites. I also tried using a backslash in front of the pipe (\|) to see if it will be treated differently but no success there either.
Thanks.
I have a field that contains many pipe characters in it. I want to look for a specific pattern in that field but can't figure out how to search for this properly. This is most likely due to it being a special character (bit operator?).
For example, I want to search for |A| (pipe A pipe). I want to use it in a formula and this is what I have so far:
Code:
if {Message} LIKE '%[|]A[|]%' then 'ABC'
else 'XYZ'
Was searching this online for a while and tried using brackets as suggested by one of the sites. I also tried using a backslash in front of the pipe (\|) to see if it will be treated differently but no success there either.
Thanks.