如何替换GWT TextArea中的某些特定文本

时间:2014-06-18 05:30:07

标签: gwt

我正在尝试替换某些特定单词或者可能在某个特定索引处(以较容易的方式)。用一些新词。

我无法找到在某个特定索引处输入textarea中的某些文本的解决方案。

无论如何

谢谢

例如。在我的textArea中,这是一个文本:“你好,这是测试” 现在我只想插入testing12而不是测试。

由于

1 个答案:

答案 0 :(得分:2)

这样的事情:

myTextArea.setValue(myTextArea.getValue().replace(myTextArea.getSelectedText(), "new text"));