Class LenVar


public class LenVar extends MultipartVar
A transformational variable resolver that returns character count or list count (using given delimiter).

The format for this var is one of the following:

  • "$LN{arg}"
  • "$LN{arg,delimiter}"
Example:

// Create a variable resolver that resolves system properties and $SW vars. VarResolver varResolver = VarResolver.create().vars(LenVar.class, SystemPropertiesVar.class).build(); // Use it! System.out.println(varResolver.resolve("Parts = $LN{$P{os.version},.} Chars = $LN{$P{os.version}}"));

Since this is a MultipartVar, any variables contained in the result will be recursively resolved.
Likewise, if the arguments contain any variables, those will be resolved before they are passed to this var.

See Also:
  • Field Details

  • Constructor Details

    • LenVar

      public LenVar()
      Constructor.
  • Method Details

    • resolve

      public String resolve(VarResolverSession session, String[] args)
      Description copied from class: MultipartVar
      The interface that needs to be implemented for this interface.
      Specified by:
      resolve in class MultipartVar
      Parameters:
      session - The session object used for a single instance of a string resolution.
      args - The arguments inside the variable.
      Returns:
      The resolved variable.