Do everything with so much love in your heart that you would never want to do it any other way. - Brahma Kumaris

— [as3]読み込んだXMLの改行をキレイに取り除く

Posted: Mar 13, 2009, 6:27 pm | Author: cyberryo | Category: Dialy | Tags: ,

どんな環境で編集したかわからないXMLファイルを読み込み、actionscriptでごにょごにょするときに、キレイに改行を取り除いて改行コードを”\n”に統一する関数。

function crlf2lf(str:String):String {
	str = str.replace(/\r\n/g, '\n');
	return str;
}

Facebook Comments