Help for this page

Select Code to Download


  1. or download this
    use YAPE::Regex::Explain;
    print YAPE::Regex::Explain ->new(
        qr/([^http.*?\s+]\S{30})/
    ...
    ----------------------------------------------------------------------
    )                        end of grouping
    ----------------------------------------------------------------------
    
  2. or download this
    s{(\S{30,}){
        my $ret = $1;
        if( $ret !~ /http/ ){
    ...
        }
        $ret;
    }ge;