cancel
Showing results for 
Search instead for 
Did you mean: 

Special Character ' in Information steward '

Former Member
0 Kudos

I have to handle special character O'Hare in IS rule. My code is

If i am writing my code like below mentioned method i am getting syntax error.

BEGIN RETURN

match_regex($ORT01, '[a-zA-Z .' ]*', NULL);

END

But I need my Data O'hare in the passed Records.

Please help

Accepted Solutions (1)

Accepted Solutions (1)

0 Kudos

perhaps add a backspace as escape character...

like this ...

match_regex($ORT01, '[a-zA-Z .\' ]*', NULL);

Answers (1)

Answers (1)

Former Member
0 Kudos

Thank you so much for your help