Help for this page

Select Code to Download


  1. or download this
                if (/\G<([^<>]*)>/gc) {
                    flush_name();
                    $state = 'TEXT';
                    print OUT $1;
                    next;
                }
    
  2. or download this
                if (/\G<[^<>]*>/gc) {
                    flush_name();
                    $state = 'TEXT';
    ...
                    substr $_, 0, $+[0], '';
                    next;
                }