我有一张桌子,在其中一列中,我有一个长文本,我想替换所有的“;”。当我在浏览器中显示文本时,按“ \ n *”。
我尝试过:
String ingredients = recipe.getIngredients().replace(";","\n* ");
recipe.setIngredients(ingredients);
以及:
String ingredients = recipe.getIngredients().replace(";","<br>* ");
recipe.setIngredients(ingredients);
但是在浏览器中,我有这样的东西:
foo1* foo2* foo3
或者,对于第二个版本:
foo1<br>* foo2<br>* foo3
我想要这样的文字:
foo1
*foo2
*foo3
非常感谢您的帮助。