Help for this page

Select Code to Download


  1. or download this
    use HOP::Lexer 'string_lexer';
    my $text = 'xselectx';
    ...
      [KEYWORD  => qr/select/i],
      [WORD     => qr/\w+/    ]
    );
    
  2. or download this
    ['WORD','x'],
    ['KEYWORD','select'],
    ['WORD','x']
    
  3. or download this
    use HOP::Lexer 'string_lexer';
    my $text = 'select xselectx';
    ...
      [WORD     => qr/\w+/    ],
      [KEYWORD  => qr/select/i],
    );
    
  4. or download this
    ['WORD','select'],
    ' ',
    ['WORD','xselectx']