IndexOf in Velocity report?
Is there some equivalent of javascripts indexOf in Velocity? I want to test whether some开发者_StackOverflow中文版 string is contained within another string but I can't find the proper string operator for it.
Velocity allows you to use all Java methods available in your objects. So just write as if it was Java:
$string1.indexOf($string2)
精彩评论