Linq Get String after :

Hi,

Can you try the following sample?

dt.AsEnumerable.ToList.ForEach(
Sub(r)
    r("Description")=System.Text.RegularExpressions.Regex.Match(r("Description").ToString,"(?<=:\s+).*$").Value
End Sub
)

Sample20221205-3.zip (8.7 KB)

Regards,

1 Like