Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我在 GWT 中使用了“RichTextArea”。现在我想在提交表单时修剪richtextarea.gettext() 的文本。
但是,如果我只输入了空格并在我的 textarea 中输入了密钥,那么 richtextarea.gettext() 将不会修剪它,因为它会将它们转换为 和 < br>。
如果只有输入的空格并在我的文本区域中输入密钥然后修剪它应该给我空白字符串值,有什么建议吗?
你得到的 和 <br> 是你从 RichTextArea 得到的正确值,因为它提供 HTML。
实现你自己的修剪方法:
public String trim(String s) { String result = s.trim(); String x = result.replaceAll("<br>", ""); x = x.replaceAll(" ", ""); x = x.trim(); if(x.equals("")) { return x; } else { return result; } }