Extract data using regex from data scrapping

I am scrapping some data from website and text is coming like : 212133.Can anyone explain how to extract 212133 from above extracted text using regex.

regex can help

e. g. System.Text.RegularExpressions.Regex.Match(YourString, “\d+”).toString

1 Like

It shows [Cannot assign from type ‘UiPath.Core.GenericValue’ to type ‘System.String’ in Assign Activity].Can you pls help on this

change datatype of variable to String

1 Like

Thanks it worked