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

comment on

( [id://3333]=superdoc: print w/replies, xml ) Need Help??

Hi Monks,

I have two regular expressions.

$exp1 = "123*" $exp2 = "1233*"
$exp1 is stored in a MySQL table and user is entering $exp2 from a UI. We know that $exp1 will match all strings matched by $exp2. So I want to compare the two expressions. If I use any operator like eq or cmp I will get this as unequal. If I compare like  $exp1 =~ /^$exp2/ or $exp2 =~ /^$exp1/, it won't match as the meta characters like * has a different meaning on LHS and RHS of =~. Is there a way other than parsing the string to match them?

$exp1 is from DB and $exp2 is entered. Since $exp1 will match all expressions that would be matched by $exp2, I dont want to insert $exp2 into DB.

Cheers !

--VC
Gods Own Country...


In reply to Compare two regex patterns by atemon

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post; it's "PerlMonks-approved HTML":



  • Are you posting in the right place? Check out Where do I post X? to know for sure.
  • Posts may use any of the Perl Monks Approved HTML tags. Currently these include the following:
    <code> <a> <b> <big> <blockquote> <br /> <dd> <dl> <dt> <em> <font> <h1> <h2> <h3> <h4> <h5> <h6> <hr /> <i> <li> <nbsp> <ol> <p> <small> <strike> <strong> <sub> <sup> <table> <td> <th> <tr> <tt> <u> <ul>
  • Snippets of code should be wrapped in <code> tags not <pre> tags. In fact, <pre> tags should generally be avoided. If they must be used, extreme care should be taken to ensure that their contents do not have long lines (<70 chars), in order to prevent horizontal scrolling (and possible janitor intervention).
  • Want more info? How to link or How to display code and escape characters are good places to start.
Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others cooling their heels in the Monastery: (2)
As of 2024-04-20 12:29 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found