Help for this page

Select Code to Download


  1. or download this
    $string =~ s{
                    (?<![-\w./])
    ...
                        \s?
                    )
                }{<b>$1<\/b>}gimsx;
    
  2. or download this
    $ regex_slash_prob.pl
    <a href="/cgi-programming-with-perl.zip"><b>cgi-programming-with-perl.
    +zip</b></a>
    
  3. or download this
    my $string = qq|
            <a href="/cgi-programming-with-perl.zip">
                cgi-programming-with-perl.zip
            </a>
    |;
    
  4. or download this
            <a href="/cgi-programming-with-perl.zip">
               <b> cgi-programming-with-perl.zip
    </b>        </a>
    
  5. or download this
            <a href="/cgi-programming-with-perl.zip">
                <b>cgi-programming-with-perl.zip</b>
            </a>
    
  6. or download this
    $string =~ s{
                    (?<![-\w./])
    ...
                        [-\w.]*
                    )
                }{<b>$1<\/b>}gimsx;