Hello Ganesh Bharadwaj1,

split can do it's work using a regex so you can try a regex with group of chars to do the job. Consider this example (but notice a first empy element!):

#win quotation perl -e "print join '|',split /[{}\s]+/,$ARGV[0]" "{31 0} {26 0} {6 10 +} {17 0}" |31|0|26|0|6|10|17|0

Or a global silly substitution like:

perl -e "print map{s/\s?{/I am /g;s/(\d{1,3})\s/$1 years old and /g;s/ +(\d{1,3})}/$1 months old.\n/g;qq($_\n)}@ARGV" "{31 0} {26 0} {6 10} {17 0}" I am 31 years old and 0 months old. I am 26 years old and 0 months old. I am 6 years old and 10 months old. I am 17 years old and 0 months old.

But it really depends on your needs and skill, what have you tried so far?

L*

There are no rules, there are no thumbs..
Reinvent the wheel, then learn The Wheel; may be one day you reinvent one of THE WHEELS.

In reply to Re: spliting a string based on multiple delimiters and printing required o/p. by Discipulus
in thread spliting a string based on multiple delimiters and printing required o/p. by Ganesh Bharadwaj1

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.