我在Textarea
中有applet
,用户应该写一些文字。
我需要一个代码来搜索用户写的内容,然后将所有空格“If found”替换为“+”符号。
例如:“Hello World” - > “你好+世界”。
我的代码:
string space = " ";
if textarea.Gettext().contains(space){
space.ReplaceAll("+") }
答案 0 :(得分:1)
使用
string space = " ";
textarea.setText(textarea.getText().replaceAll(space, "+"));