Path Split ?
This wildcard is replaced with the part of the file path that is defined. It is possible to define a part or a range to be used. This wildcard is used in the following ways.
{path.split.#.?}
For the following input (?) --> {path.split.0:2.\myserver\myfolder1\myfolder2\myfolder3}
The output is going to be --> \myserver\myfolder1
Advanced examples:
Example 1: • Input --> {path.split.2.\myserver\myfolder1\myfolder2\myfolder3} • Output --> myfolder1
Example 2: • Input --> {path.split.-3.\myserver\myfolder1\myfolder2\myfolder3} • Output --> myfolder1
Example 3: • Input --> {path.split.2:-1.\myserver\myfolder1\myfolder2\myfolder3} • Output --> myfolder1\myfolder2\myfolder3
Example 4: • Input --> {path.split.2:-2.\myserver\myfolder1\myfolder2\myfolder3} • Output --> myfolder1\myfolder2
Example 5: • Input --> {path.split.0:-2.\myserver\myfolder1\myfolder2\myfolder3} • Output --> \myserver\myfolder1\myfolder2
Last updated