My expression is : System.Text.RegularExpressions.Regex.Match(TextoLineaNum,“(([0-9])\w+)”).Value
into an activity assign.
and the error is
My expression is : System.Text.RegularExpressions.Regex.Match(TextoLineaNum,“(([0-9])\w+)”).Value
into an activity assign.
and the error is
Hi,
Do you use C#? If so, can you try as the following?
System.Text.RegularExpressions.Regex.Match(TextoLineaNum,@"(([0-9])\w+)").Value
Regards,
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.