Lines Matching refs:match
21 echo "\n--> Pattern: '$pattern'; match: '$string'\n";
30 --> Pattern: '..(a|b|c)(a|b|c)..'; match: '--- ab ---'
44 --> Pattern: '()'; match: ''
51 --> Pattern: '()'; match: 'abcdef'
58 --> Pattern: '[x]|[^x]'; match: 'abcdef'
122 --> Pattern: '(a{1})(a{1,}) (b{1,3}) (c+) (d?ddd|e)'; match: '--- aaa bbb ccc ddd ---'
136 --> Pattern: '\\\`\^\.\[\$\(\)\|\*\+\?\{\''; match: '\`^.[$()|*+?{''
150 --> Pattern: '\a'; match: 'a'
164 --> Pattern: '[0-9][^0-9]'; match: '2a'
182 --> Pattern: '^[[:alnum:]]{62,62}$'; match: '0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQR…
190 --> Pattern: '^[[:digit:]]{5}'; match: '0123456789'
202 --> Pattern: '[[:digit:]]{5}$'; match: '0123456789'
212 --> Pattern: '[[:blank:]]{1,10}'; match: '
234 --> Pattern: '[[:print:]]{3}'; match: ' a '