Ariane logo ARIANE: A Visual Programming Interface

The Item: Format

Definition

Format is an item which implements string manipulation. This item has no input, no output and no mask. It has only parameters and one output result. The number of parameters is specified during the creation of the item.

Properties

format

Parameters

The parameters are named respectively:

  • $0 the first parameter;
  • $1 the second parameter;
  • ...

Expression

Available string manipulation expressions are:

  • constants: "foo", 1e30
  • the 'quote()' operation: quote(string) => 'string'
  • the concatenation operation '+': $0+$1;

Examples

"foo"

quote("foo")

quote("foo"+$0)

Result value

The output result is a new string.

See also


Go to the reference manual