Expression with regex

My expression is : System.Text.RegularExpressions.Regex.Match(TextoLineaNum,“(([0-9])\w+)”).Value

into an activity assign.

and the error is
image

Hi,

Do you use C#? If so, can you try as the following?

System.Text.RegularExpressions.Regex.Match(TextoLineaNum,@"(([0-9])\w+)").Value

Regards,

HI @amaia.aristeguii

Try this

System.Text.RegularExpressions.Regex.Match(TextoLineaNum,“[0-9]\w+”).ToString

What is the datatype of resultadoRegex?

Regards
Sudharsan

This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.