OK, first of all, what are those slashes doing before the < and > signs? They're not necessary. You might have inherited that from doing regexes on HTML? It looks like it. So get into the habit of not using // as your separation pattern. Use || or ## or {}{} instead.

Second, this regex does exactly what you want it to, you've told it to find the first < it comes across and match, non-greedily, to the first > it comes across. That's why it's matching the way it is.

$str =~ s|(.*)<.*?>|$1|; does what you want. Match, greedily, and keep, anything up to a < (greediness is your friend in this kind of situation).

But then so does $str =~ s|</a>$||; if all you need is to take the closing anchor tag off the end. It's not possible to know exactly what you want from this example.



($_='kkvvttuubbooppuuiiffssqqffssmmiibbddllffss')
=~y~b-v~a-z~s; print

In reply to Re: Regular expression seems to be greedy by Cody Pendant
in thread Regular expression seems to be greedy by scogreen

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



  • 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:
    & &amp;
    < &lt;
    > &gt;
    [ &#91;
    ] &#93;
  • Link using PerlMonks shortcuts! What shortcuts can I use for linking?
  • See Writeup Formatting Tips and other pages linked from there for more info.