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.
我有一个Textarea用户applet应该写一些文本的地方。
Textarea
applet
我需要一个代码来搜索用户写的内容,然后用“+”号替换所有空格“如果找到”。
例如:“Hello World”-->“Hello+World”。
我的代码:
string space = " "; if textarea.Gettext().contains(space){ space.ReplaceAll("+") }
采用
string space = " "; textarea.setText(textarea.getText().replaceAll(space, "+"));