我有一个变量,其值类似于
30S,2H,5D
where S,H and D stands for Seconds, Hours and Days.
我想从变量中提取"S/H/D"
并转换为时间段-字符串"Seconds/Hours/Days"
。
有没有可用于解决上述问题的内置方法。
在freemarker中,您可以使用内置的replace
方法。
用于将原始字符串中所有出现的字符串替换为另一个字符串。
例如,
${"this is a car acarus"?replace("car", "bulldozer")}
将打印:
this is a bulldozer abulldozerus
在此处查看更多:Built-in for strings