Hi,
There is another simple way rather than using Regex you can use split function like this Split(row.item(1).ToString, “X”)(1).Remove(0,2), This will give you the expected result.
@pavanh003 Thanks for the solution but i also want to remove 1 space tab which is now present at the starting of new string i.e. " 110 Line AIWL-7003 Ashley Blue Cola" output is coming and i want to remove first space from the output “110 Line AIWL-7003 Ashley Blue Cola”.