Page 1 of 1

How do I change a ";" to a carriage return / line

Posted: Thu Oct 18, 2012 12:21 pm
by btthevoice
can someone please show me the regular expression that will replace all semi colons with a carriage return / line feed.
thanks

Posted: Thu Oct 18, 2012 12:45 pm
by ak47wong
Find what: ;
Replace with: \n

Posted: Thu Oct 18, 2012 4:46 pm
by btthevoice
excellent. Perfect answer.