Dear PerlMonks,

I have a simple question. kindly help me if possible....

I have some names. some have a country code in front of that name, but some don't. The country code is either 2 digit or 3 digit codes and is seperated with a hyphen. I wish to extract the country code using perl regex (remember some doesn't have the country codes). Below are some of the example names.

$name = "UK-Storee Leaader"; $name = "US-Inventory Specialiist"; $name = "Verifiication Engiineer - Techniical"; $name = "CHN-Speciialist"; $name = "Software Engiineer - Telecom"; $name = "ESP-Busiiness Manager"; $name = "Software Engiineer - Productiiviity"; $name = "FRA-Busiiness Speciialist"; $name = "CAN-Busiiness Speciialist"; $name = "CHE-Inventory Specialiist"; $name = "HK-Iinventory Speciialiist"; $name = "ITA-Speciialist"; $name = "NLD-Busiiness Specialiist";

Pls note that some are not having country codes but having a hyphen. I Only want to extract if there is a country code. Basically if the digit count matches 2 or 3 before the first hyphen, I need to do the extract and leave the rest(if not like that).

Pls can anyone suggest me a simple regex for this. I am planning to do the $name one at a time, so dont need to loop or something... just that basic regex which separate those county codes.

Thank you Monks.


In reply to Perl Regex Help! by Anonymous Monk

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.