<p>${bean.content}</p>如果${bean.content}输出的结果最后以<p> </p>结尾就把结尾的<p> </p>删掉
时间: 2024-02-20 19:01:42 浏览: 68
基于Spring的AOP快速实现通用日志打印(csdn)————程序.pdf
好的,你可以使用以下代码实现:
```java
String content = bean.content.trim();
if (content.endsWith("<p> </p>")) {
content = content.substring(0, content.length() - 14);
}
```
这段代码会首先使用 `trim()` 方法去除 `${bean.content}` 字符串两端的空格,然后判断字符串是否以 `<p> </p>` 结尾,如果是,则使用 `substring()` 方法去掉最后的 14 个字符,即 `<p> </p>`。最后得到的结果就是你想要的字符串。
阅读全文