Assuming the data you want is the organism information, and assuming that this information is always found in the last bracket:

$desc =~ /.+\[(.+)\]\s*$ (?{ $org = $1 or ''; })/x;

Breaking it down:
/.+ will greedy search until the last bracket,
\[(.+)\] will identify everything within the brackets,
\s*$ will make sure we're at the end of the line,
(?{ $org = $1 or ''; }) will store the data if any was found, and
/x tells the regex to ignore whitespace.

However, if you're doing this in a loop, I'd recommend the following:

my $enz, my $org; my $rx_enz_org = qr/ (.+)\[(.+)\]\s*$ (?{ $enx = $1 or ''; $org = $2 or ''; }) /x; <begin $desc loop> $desc =~ /$rx_enz_org/; <end loop>

qr// precompiles the regex, giving an extra bit of speed. Also, the regex saves both the enzyme and organism name (if you don't need the enzyme, then just use the previous example).

Hope this helps!
P.S. I haven't tested this, but I think it should work for you.


In reply to Re: regular expression by muppetjones
in thread regular expression by ssharma

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.