提问人:Chinmaya Y Hegde 提问时间:7/14/2023 最后编辑:James ZChinmaya Y Hegde 更新时间:7/14/2023 访问量:42
在速度模板中一次替换 2 个字符串
replace 2 strings at a time in velocity template
问:
SERIAL_NUMBER 在 iLPN/Tote {IlpnId} 中找不到 {SerialNumber}
我想将 {SerialNumber} 替换为某个值,并且还想一次将 {abcd} 替换为某个值。 我可以一次替换一个{SerialNumber}或{abcd},但不能同时替换两者。
如何使用 Velocity 模板语言做到这一点?
答:
0赞
nischal sharma
7/14/2023
#1
下面是一个示例,说明如何使用 Velocity 模板语言替换字符串中的多个变量:
#set($SerialNumber = "1234")
#set($abcd = "xyz")
SERIAL_NUMBER $SerialNumber not found in iLPN/Tote $abcd
在上面的示例中,和 是两个变量,分别替换为值 和 。$SerialNumber
$abcd
"1234"
"xyz"
评论