Split an array and add it to a string

Hi @chauhan.rachita30

Try this

lastName = String.Join(" ", inputString.Split(" "c).Skip(1))

Cheers!!

2 Likes