grizzled.string

template

package template

Scala classes that provide for variable substitution within strings, akin to the Python StringTemplate library. Several syntaxes are supported.

Visibility
  1. Public
  2. All

Type Members

  1. abstract class StringTemplate extends AnyRef

    A simple, configurable string template that substitutes variable references within a string.

  2. class StringTemplateException extends Exception

    Base class for all StringTemplate exceptions.

  3. class UnixShellStringTemplate extends StringTemplate

    A string template that uses the Unix shell-like syntax ${varname} (or $varname) for variable references.

  4. class Variable extends AnyRef

    Information about a parsed variable name.

  5. class VariableNotFoundException extends Exception

    Thrown for non-safe templates when a variable is not found.

  6. class WindowsCmdStringTemplate extends StringTemplate

    A string template that uses the cmd Windows.