Hi;
Sometimes I create some long associative arrays ie "array('k1'=>'v1','k2'=>'v2',...'kn'=>'vn')
There are often times that I would like to do a search/replace in my editor (using Komodo lately) so that in the editor, the line will break after each comma (after each key=>value pair) to make scanning through these arrays easier.
I usually do this by pasting the string into MS Word and doing a replace all (ie. find "," replace with ",p") and then hitting "replace all" which works fine, but is pesky/inefficient. Is there some special character code that can be used in these code text editors (ie. Komodo, Crimson Editor, Geinie, etc.) that functions the same way as "p" does in the example above (the invisible line break character used in such editors)?