I have an application source sending me data as Name - employee Number
I wanted to know does anyone have a transform to remove everything after the - so that i can just keep the name so i can use that for manager name.
I cannot seem to find the correct transform to do this process like split which will remove everything before w the - which i am doing for the manager employee n
number and works great.
Thanks
As @vkashat and @ISC_PR mentioned, you can use split transform to achieve this.
Also, if you need to do more extensive transform operations, i would suggest to use a static transform and use velocity templates inside that so that you can achieve more operations like: for loop, split, contains, if else etc.