in reply to Re^5: split on the pattern of '),('
in thread split on the pattern of '),('

Your first "GOT" line contains a substring "),(" thus it was not fully split on that substring.

perl -E'sub Monkey::do{say$_,for@_,do{($monkey=[caller(0)]->[3])=~s{::}{ }and$monkey}}"Monkey say"->Monkey::do'

Replies are listed 'Best First'.
Re^7: split on the pattern of '),('
by ikegami (Patriarch) on Sep 30, 2012 at 22:05 UTC
    Yes, and yours did split in the middle of the string.