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
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