Lines Matching refs:match
21 echo "\n--> Pattern: '$pattern'; match: '$string'\n";
30 --> Pattern: '..(a|b|c)(a|b|c)..'; match: '--- ab ---'
40 --> Pattern: '()'; match: ''
47 --> Pattern: '()'; match: 'abcdef'
54 --> Pattern: '[x]|[^x]'; match: 'abcdef'
64 --> Pattern: '(a{1})(a{1,}) (b{1,3}) (c+) (d?ddd|e)'; match: '--- aaa bbb ccc ddd ---'
74 --> Pattern: '\\\`\^\.\[\$\(\)\|\*\+\?\{\''; match: '\`^.[$()|*+?{''
84 --> Pattern: '\a'; match: 'a'
94 --> Pattern: '[0-9][^0-9]'; match: '2a'
104 --> Pattern: '^[[:alnum:]]{62,62}$'; match: '0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQR…
112 --> Pattern: '^[[:digit:]]{5}'; match: '0123456789'
122 --> Pattern: '[[:digit:]]{5}$'; match: '0123456789'
132 --> Pattern: '[[:blank:]]{1,10}'; match: '
146 --> Pattern: '[[:print:]]{3}'; match: ' a '