As moritz explained you were matching every pair of numbers when you wanted every number with a space following it.

Another way to replace every space following a number with a semicolon could be *(untested):

  s/(\d)(?:\s+)/$1;/g

The \d matches any single digit and is the same as [0-9]. As you learned in your attempt, the parentheses 'capture' that match and store it in memory so we can use it later. The second part of our match looks for at least one space following that digit but doesn't store it in memory because of the (?: ) since we're not planning on using it to help build our replace pattern.

Aside from the perldocs on regexes, if you're interested, you might like Mastering Regular Expressions by Jeffrey E.F. Friedl and/or Data Munging with Perl by Dave Cross.

UPDATE
Same day, 16.Sep.2011 :: 02:35:24 PM :: Changed: s/(\d)(?:\s)+/$1;/g   To : s/(\d)(?:\s+)/$1;/g   Following AnomalousMonk's suggestion.


"...the adversities born of well-placed thoughts should be considered mercies rather than misfortunes." — Don Quixote

In reply to Re: Beginner question about search and replace by luis.roca
in thread Beginner question about search and replace by hilbert

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.