Spark的TextArea或RichText的内容
是否可以从spark的TextArea或RichText中获取每一行的内容?
我想要实现的是将文本区域(或富文本)内容拆分为行并修改其中的一些内容。
Is it possible to get content of each line from spark's TextArea or RichText?
What I want to achieve it to split textarea's (or richtext) content into rows and modify some of them.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
var rows : Array = textArea.text.split("\n");
var rows : Array = textArea.text.split ("\n");