2012-01-07 97 views

回答

0

你可以把它做一個TLFText在IDE中,在其屬性>高級>突破>「所有」

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"); 
+0

grapefrukt,感謝 我可以問你該怎麼做,如果我想利用第一字符串的每個字的字母? – user1088417 2012-01-07 18:53:11

+0

@ user1088417,這是一個非常不同的問題,應該單獨詢問。 。 。但是,在此之前,您應該研究正則表達式(正則表達式,正則表達式)。 Adobe的版本[此處介紹](http://help.adobe.com/en_US/as3/dev/WS5b3ccc516d4fbf351e63e3d118a9b90204-7ea9.html)。 – iND 2012-01-08 06:54:54

相關問題