嗨,我有文本字段在AS3中,我喜歡字符串替換 n或<br/>在AS3
var TFhtmlText:String = "<span class='Header'>The value need to be 25 percentage \n and percentage be 50 percent.</span>"
txtField.htmlText = TFhtmlText;
從上面分配的html價值,我需要換行後25個爲我所用<br/>
但我在換行符之間得到了不需要的空格,所以現在我用
;對於斷行,這是工作的罰款,所以我需要更換這個(
)字符,其中\n
存在..我試圖與
TFhtmlText = TFhtmlText.split('\n').join('
')
txtField.htmlText = TFhtmlText;
TFhtmlText=TFhtmlText.replace(/\n/g, "
");
但不工作....我怎麼能實現呢
感謝提前
它之後正是在這個問題 – 2011-12-08 11:37:58
@Paranav我不不明白你的意思 – 2011-12-08 15:08:36
在問題中,他寫了'TFhtmlText = TFhtmlText.split('\ n')。join(' '); txtField.htmlText = TFhtmlText;'。在你的回答中,你將TFhtmlText改爲my_str,並添加了另一行代碼,它代表它 – 2011-12-09 06:15:10