Quantcast
Viewing all articles
Browse latest Browse all 26

Apache Ant – String to uppercase / lowercase using ScriptDef

In Apache Ant, we can define custom task using MacroDef.

 

Other than that, Apache Ant is now shipped with a Javascript engine so we could use ScriptDef to define our own task in Javascript. The following example defines two tasks converting a string to uppercase and lowercase.

<project name="switch-case" default="run" basedir="./">

  <!-- To upper case -->
  <scriptdef language="javascript" name="upper">
    <attribute name="string" /> 
    <attribute name="to" />
    project.setProperty(attributes.get("to"),attributes.get("string").toUpperCase());
  </scriptdef>

  <!-- To lower case -->
  <scriptdef language="javascript" name="lower">
    <attribute name="string" /> 
    <attribute name="to" />
    project.setProperty(attributes.get("to"),attributes.get("string").toLowerCase());
  </scriptdef>

  <target name="run">
    <property name="input" value="HeLlo wORld!" />
    <upper string="${input}" to="upper" />
    <lower string="${input}" to="lower" />
    <echo message="input: ${input}" />
    <echo message="upper: ${upper}" />
    <echo message="lower: ${lower}" />
  </target>

</project>

 

Result:

C:\Workspaces\switch-case> ant
Buildfile: C:\Workspaces\switch-case\build.xml

run:
     [echo] input: HeLlo wORld!
     [echo] upper: HELLO WORLD!
     [echo] lower: hello world!

BUILD SUCCESSFUL
Total time: 0 seconds

 

Done =)

Reference:


Filed under: Ant Tagged: Ant, Javascript, MacroDef, ScriptDef Image may be NSFW.
Clik here to view.
Image may be NSFW.
Clik here to view.

Viewing all articles
Browse latest Browse all 26

Trending Articles