Beefy Boxes and Bandwidth Generously Provided by pair Networks
Your skill will accomplish
what the force of many cannot
 
PerlMonks  

Re: Using special characters in left part of a regex match?

by LanX (Saint)
on Feb 05, 2013 at 23:01 UTC ( [id://1017298]=note: print w/replies, xml ) Need Help??


in reply to Using special characters in left part of a regex match?

> Is there a way to put special characters in the left part of the regular expression?

with special characters you mean the regex wildcards you're including for ... and the answer is no.

in short

$var[1] = "Gallia est omnis divisa in .+"; $var[5] = "Gallia est .+ tres"; $var[1] =~ $var[5] ;# false

what could maybe work is to successively strip common beginning and/or ending parts.

"Gallia est ..." is the smallest starting substring till an ellipsis.

Deleting it from both strings:

$var[1] = "omnis divisa in ..."; $var[5] = "... tres";

this configuration is always true.

such a strategy might work.

Cheers Rolf

Replies are listed 'Best First'.
Re^2: Using special characters in left part of a regex match?
by shamat (Acolyte) on Feb 06, 2013 at 16:56 UTC
    Thank you for the suggestion, I really appreciate it! I'll try your strategy, which I think may work well with syntactical variations as well.

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others studying the Monastery: (4)
As of 2024-04-23 23:22 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found