Beefy Boxes and Bandwidth Generously Provided by pair Networks
There's more than one way to do things
 
PerlMonks  

Re^4: Split a string based on change of character

by Skeeve (Parson)
on Jul 28, 2007 at 15:28 UTC ( [id://629296]=note: print w/replies, xml ) Need Help??


in reply to Re^3: Split a string based on change of character
in thread Split a string based on change of character

But $i^=$i makes $i 0 at once. So it's different to $i=!$i

Back in the ancient times of C64 Basic I used j=1-j


s$$([},&%#}/&/]+}%&{})*;#$&&s&&$^X.($'^"%]=\&(|?*{%
+.+=%;.#_}\&"^"-+%*).}%:##%}={~=~:.")&e&&s""`$''`"e

Replies are listed 'Best First'.
Re^5: Split a string based on change of character
by eyepopslikeamosquito (Archbishop) on Jul 29, 2007 at 02:43 UTC

    I think ikegami meant $i^=1, i.e.:

    my @words = grep $i^=1, split /(?<=(.))(?!\1)/, $string;
    which does work.

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://629296]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others learning in the Monastery: (4)
As of 2024-04-26 00:23 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found