为字符串中包含的每个字符添加“\ n”

时间:2012-01-07 17:36:06

标签: regex actionscript-3

在AS3中工作,想要使字符串的文本垂直。我认为击球方式是使用正则表达式,为包含在字符串中的每个字母添加“\ n”。我怎么能这样做?

2 个答案:

答案 0 :(得分:0)

var myString:String = "foo bar baz"; 
// . matches every character, g makes it global
// replace with $& which is the match and add a \n at the end
myString = myString.replace(/./g, "$&\n");

答案 1 :(得分:0)

您可以在IDE的属性>下对IDE中的TLFText执行此操作。高级>休息> “全部”