如何在flex 4中的textarea中获取当前光标位置下的单词
我正在使用 flex4 创建编辑器。我需要获取当前光标位置下的单词。例如,这是文本区域中的文本,“嗨,这是一个示例”,光标位于“this”单词下。如果我点击一个按钮,那么必须返回这个“this”单词。所有这些我需要在flex4和actionscript3中实现。请提供任何建议或帮助。
I'm using flex4 for creating an editor. There I need to get word under current cursor position. say for example, this is the text in textarea, "Hi, this is a sample" and cursor under "this" word. If I click a button, then this "this" word must be returned. All this I need to implement in flex4 and actionscript3. Please provide any kind of suggestion or help.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
看一下
TextField.caretIndex
。它是光标在文本字段中的索引位置。然后您需要使用该位置提取当前单词。一种方法是在两个方向上查找空格,但我确信有一些奇特的正则表达式可以使用插入符号索引为您完成此操作。Take a look at
TextField.caretIndex
. It is the index position of the cursor in the textfield. Then you need to extract the current word using that position. One way is to look for spaces in both directions but I am sure there is some fancy Regular Expression out there that can do it for you using the caret index.我需要这样一个函数来进行代码提示,这种方法效果很好:
I needed such a function for code hinting, this approach works nicely: