Help for this page

Select Code to Download


  1. or download this
    m#<([^"'>]+|"[^"]*"|'[^']*')*>#
  2. or download this
    m#(<(?:[^"'>]+|"[^"]*"|'[^']*')*>)#
  3. or download this
    while(  $html !~ m#\G$#gc  ) {
        if(  $html =~ m#\G([^&<]+)#gc  ) {
            # $1 is plain text
    ...
            }
        }
    }