String Startswith and Endswith
FreeMarker is a java based template engine for complex template processing.
This requires the library freemarker-2.3.16.jar to be in classpath.
The following example shows using String starts_with and ends_with built-in functions.
03
<#assign a = "be the coder"?ends_with("coder")>
04
${a?string("true", "false")}
06
<#assign a = "be the coder"?ends_with("the")>
07
${a?string("true", "false")}
11
<#assign a = "be the coder"?starts_with("be")>
12
${a?string("yes", "no")}
14
<#assign a = "be the coder"?starts_with("the")>
15
${a?string("yes", "no")}
package com.bethecoder.tutorials.freemarker.tests;
import java.io.IOException;
import java.io.OutputStreamWriter;
import java.util.HashMap;
import java.util.Map;
import freemarker.template.Configuration;
import freemarker.template.Template;
import freemarker.template.TemplateException;
public class StringStartEndTest {
/**
* @param args
* @throws IOException
* @throws TemplateException
*/
public static void main ( String [] args ) throws IOException, TemplateException {
//Get template from classpath
Configuration cfg = new Configuration () ;
cfg.setClassForTemplateLoading ( StringStartEndTest.class, "/" ) ;
Template template = cfg.getTemplate ( "startend.ftl" ) ;
//Prepare data model
Map<String, Object> dataModel = new HashMap<String, Object> () ;
//Merge template and data
OutputStreamWriter output = new OutputStreamWriter ( System.out ) ;
template.process ( dataModel, output ) ;
}
}
It gives the following output,
ends_with
-----------
true
false
starts_with
-----------
yes
no