TextArea() - 将文本内容处理为单词列表
我喜欢访问 TextArea 中的项目/单词列表,例如 Word(2)。 TextArea() 或一些好的 List 对象是否有对此的本机支持?
例如,
1stword = TextArea.TextAsList(1)
2ndword = TextArea.TextAsList(2)
既然已经有了 .htmltext,是否有一些 HTML 对象可以用来轻松地制作这样的列表?
I like to have access to items/list of words in TextArea, like Word(2). Is there native support for that in TextArea() or some good List object to be used?
E.g.
1stword = TextArea.TextAsList(1)
2ndword = TextArea.TextAsList(2)
Since there is already .htmltext, is there some HTML object that could be used to make such a list easily?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
没有。 只需将文本放入其中并使用 String.Split 即可。
另外,如果有这样的方法,它也可以进行分割。
Nope. Just get the text in there and use a String.Split.
Besides, if there were such a method, it would also do the split.