Splitting a file path that comes in as a transaction item

Hello

Another option is to use Regex and an Assign activity. Preview the pattern here.

image

Assign left:
str_Result

Assign Right:
System.Text.RegularExpressions.Regex.Match(YOURSTRINGVARIABLE, β€œ[^\]+(?=..*$)”).Tostring

You can learn Regex here:

Hopefully this helps :blush:

Cheers

Steve