Help for this page

Select Code to Download


  1. or download this
    $ perl -le 'print join "\n", map {s/\\://g;$_} "aa:b\\:b\\::\\:c\\:\\:
    +c"=~m!(?>\\.|[^:])+!gs'
    aa
    bb
    cc
    
  2. or download this
    $ perl -le 'print join "\n", map {s/\\://g;$_} "111111111:22222\\:2222
    +:333333333:4444444"=~m!(?>\\.|[^:])+!gs'
    111111111
    222222222
    333333333
    4444444