用 Velocity 模板语言替换字符串的子字符串
我想用另一个字符串替换 Velocity 模板语言中的字符串的一部分。
例如:
#set($a = "Hello")
#set($b = "+")
我想将Hello中的ll替换为++。输出应该是 He++o
请帮助我
谢谢 基肖尔
I want to replace a part of a string in Velocity Template Language with another string.
For Example:
#set($a = "Hello")
#set($b = "+")
I want to replace ll in Hello with ++. The output should be He++o
Please help me
Thanks
Kishore
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
默认情况下,您可以使用 Java String 对象的方法:
将产生 He++o 并且您还可以使用速度变量作为方法调用的参数,例如:
By default you can use the methods of the Java String object:
will produce He++o and you can also use velocity variables as arguments to your method calls, e.g.: