Hello Everyone.
I have a photo attached herewith where i was able to extract the name with scrap relative and message box the output. However, I want to split the names with .Split taking the space as a delimiter and then concatenate first and second name together.
Photo
@mozahra once you get the name store it in a variable say outstr.now to get your output give like this in assign activity outstr.split(" “)
It will give you output as array of string store it in a variable say strarray.now to get your result give like this straarray(0)+” "+straarray+(1).
@venkatmalla6 this is exactly what i have done you can check my workflow attached. However its giving me the first tow characters only and i want all the first name and second name together.
Thanks in advance.
I tried this one and even added. ToArray() However it also returned “r” and “a” characters only.
Can you please have a look at my original workflow and try to check where would be the problem.
Thanks in advance
@venkatmalla6 Thanks yes there was no need for the loop. i was assuming that the split will divide the name into many items then i have to loop and for each item (0) and item (1) i concatenate.