c# - Regexp, force text vertical -


i have text:"i stackoverflow", , want result regexp (separated \n):

i l k e s .... 

how can c#?

i'm not sure regex ideal (see donut's answer), if want one...

regex.replace("i stackoverflow", "([^\\s]\\s?)", "$1\n"); 

Comments

Popular posts from this blog

Add email recipient to all new Trac tickets -

400 Bad Request on Apache/PHP AddHandler wrapper -

php - Change action and image src url's with jQuery -