String Split ?

This wildcard is replaced with a part or section of a string, with its delimiter being a whgite space ( ). The input string is cut based on the split parameter, which can be a single value or a range. The split parameter can be positive or negative; a positive value cuts the string from the beginning, while a negative value cuts it from the end.

The wildcard is used in the following ways.

  • {string.split.?}

  • For the following input (?) --> {string.split.0:2.I Want to Split this string}

  • The output is going to be --> I Want to

Further examples:

  • Example 1: • Input --> {string.split.2.I Want to Split this string} • Output --> to

  • Example 2: • Input --> {string.split.-3.I Want to Split this string} • Output --> Split

  • Example 3: • Input --> {string.split2:-1.I Want to Split this string} • Output --> to Split this string

  • Example 4: • Input --> {string.split.2:-2.I Want to Split this string} • Output --> To Split this •

  • Example 5: • Input --> {string.split.0:-2.I Want to Split this string} • Output --> I Want to Split this