当我在 AS3 中创建一个 TextField 并将多行设置为 true 并将文本等同于说:
“你好\r你好”
我无法使用 indexOf 函数检索 \r 的索引位置,它总是返回 -1
有谁知道我做错了什么?
var txt:TextField;
txt.multiline = true;
txt.text = "Hola \r hola";
//txt now renders fine with the line break
trace(txt.indexOf("\r")); //Returns -1, should return the valid index of \r in txt