http://qs1969.pair.com?node_id=528892


in reply to Re: Splitting a string
in thread Splitting a string

/\w(?=\w(?<=(..)))/g;

Isn't that rather more complicated than necessary?

/(?=(\w\w))./g;