Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
as3 で split() 関数を使用して文字列をキャリッジ リターンで分割する方法を誰か教えてもらえますか?
これは通常 " \n " で行われますが、この場合、de 引用符の有無にかかわらず機能しないようです。
このように分割してみてください
var yourArray:Array = YourString.split(String.fromCharCode(13));