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...
Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
Read Where should I post X? if you're not absolutely sure you're posting in the right place.
Please read these before you post! —
Posts may use any of the Perl Monks Approved HTML tags:
- a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
|
For: |
|
Use: |
| & | | & |
| < | | < |
| > | | > |
| [ | | [ |
| ] | | ] |
Link using PerlMonks shortcuts! What shortcuts can I use for linking?
See Writeup Formatting Tips and other pages linked from there for more info.