startwith 结束并包含在 Apache 免费标记中

startswith ends with and containing in Apache free marker

如何查看特定的string starts with hello or ends with hello or contains hello in apache free marker。有没有预定义的 function 可用

HelloIamShruti
IamShrutiHello
ShrutiHelloSharma

如果我想检查starts with "Hello" first string should be returned 如果我想检查 ends with "Hello" second string should be returned 如果我想检查 contains "Hello" last string should be returned

可用于您的请求的 Freemarker 方法有:

  • starts_with,例如。 "redblue"?starts_with("red") 将 return 为真。
  • ends_with,例如。 "redblue"?ends_with("red") 将 return 为假。
  • 包含,例如。 <#if "piceous"?contains("ice")>It contains "ice"</#if> 将显示消息

当你想要包含单词但不在开头或结尾时,只需添加一个if条件来检查starts_withends_with结果是否为false。