用謂詞函式評估正規表示式
謂詞函式 matches
可用於在不使用任何物件宣告的情況下動態評估字串。
IF matches( val = 'Not a hex string'
regex = '[0-9a-f]*' ).
cl_demo_output=>display( 'This will not display' ).
ELSEIF matches( val = '6c6f7665'
regex = '[0-9a-f]*' ).
cl_demo_output=>display( 'This will display' ).
ENDIF.