Hello
my_string = 'Robert's Company'
Here we are seeing a apostrophe (') in my_string, pls. let me know how to figure out whether it containing a apostrophe or not? I tried below, but throwing syntax error
FIND ''' IN my_string. "3 quotes
IF sy-subrc = 0.
WRITE: 'Found the Apostrophe'
ENDIF.
Thank you