Do you want to remove the substring from the larger string or pull it out for processing? I'm getting hung up on your choice of "extract."

If your data is consistent with:

WX 200 A string of interest 86.34 0906
WTTS 320 Peer here my peer 17.34 1001
XGR 400 Please take me with you 19.87 1201

You could:
while(<STRING_SRC>) {
  /[A-Za-z]+ [0-9]+ (.*)?[0-9.]+ [0-9]+/;
  $dotoit = $1;
  do_func $dotoit;
}
The regular expression assigns your string to $1. If you need to extract, as in pull out, the value then
while(<STRING_SRC>) {
  /[A-Za-z]+ [0-9]+ (.*)?[0-9.]+ [0-9]+/;
  $dotoit = $1;
  s/$dotoit//;
  fund_do $dotoit;
}

Be Appropriate && Follow Your Curiosity

In reply to Re: substring extraction by mikeraz
in thread substring extraction by tpane

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.