Beefy Boxes and Bandwidth Generously Provided by pair Networks
No such thing as a small change
 
PerlMonks  

Re: Adding href where needed.

by runrig (Abbot)
on Oct 31, 2000 at 04:53 UTC ( [id://39219]=note: print w/replies, xml ) Need Help??

Help for this page

Select Code to Download


  1. or download this
    s/href\s*=\s*/href=/ig;
    s,(?<!(?i:href=))((?:http|ftp|news)://\S*),<a href="$1">$1</a>,g;
    ...
    You might try to think of something besides '\S*' also, in case
    the user puts in a period after the href, or puts it between
    parenthesis or ???.
    
  2. or download this
    # Now its starting to get ugly!
    $str =~ s#((?i:<a\s+href\s*=\s*"?)?(?:http|ftp|news)://[^"]+)#substr($
    +1,0,1) eq '<' ? $1 : qq!<a href="$1"
    >$1</a>!#eg;
    

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://39219]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others drinking their drinks and smoking their pipes about the Monastery: (5)
As of 2024-04-20 01:07 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found