txtcontent替换</br>标签为\n
时间: 2024-10-19 13:07:20 浏览: 18
FCKEDITOR学习笔记资料.pdf
如果你想在Java中替换`<br>`标签为`\n`(换行符),你可以使用正则表达式和字符串替换的方法。这里有一个简单的示例:
```java
public class Main {
public static void main(String[] args) {
String txtContent = "This is a text with<br>some line breaks.";
// 使用replaceAll方法替换 <br> 为 \n
String newContent = txtContent.replaceAll("<br>", "\n");
System.out.println(newContent);
}
}
```
在这个例子中,`replaceAll("<br>", "\n")` 方法会查找所有的 `<br>` 标签并用 `\n` 替换它们。运行这段代码后,输出的 `newContent` 就会是:
```
This is a text with
some line breaks.
```
阅读全文