Extracting a string with spaces using Regex Activities

Hi @Aswini

System.Text.RegularExpressions.Regex.Match(strValue,“(?<=Vendor Name:)(.*)”).ToString.Trim

you can use this expression to get the full name and trimming the data from start and last if any.

hope this will works