Beefy Boxes and Bandwidth Generously Provided by pair Networks
Welcome to the Monastery
 
PerlMonks  

Re^4: Regex to match non image urls (Parse::BBCode)

by Anonymous Monk
on Jan 18, 2013 at 10:01 UTC ( [id://1014009]=note: print w/replies, xml ) Need Help??


in reply to Re^3: Regex to match non image urls
in thread Regex to match non image urls

You want to use Parse::BBCode, but you could try
$text =~ s{ \[(\w+)\] # $1 tagname ( .*? ) # $2 stuff \[\/(\w+)\] # $3 tagname }{ TagFudge( $1, $2, $3 ); }gsex; sub TagFudge { my( $open, $content, $close ) = @_; if( $content =~ m{\.(jpe?g|gif|xbm|png|bmp)$} ){ return "Ok"; } else { return "Invalid"; } }
But you should use Parse::BBCode

Replies are listed 'Best First'.
Re^5: Regex to match non image urls (Parse::BBCode)
by userdefinable (Initiate) on Jan 18, 2013 at 10:11 UTC
    Could't get that to work, it just says everything is invalid.
      Ah ha it was missing brackets on the tag parts. Works great now, thanks :)

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others surveying the Monastery: (2)
As of 2024-04-25 20:43 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found