Hi,
It’s necessary to add backslash to your pattern and add columnanme to your CurrentRow variable as the following
System.Text.RegularExpressions.Regex.Match(CurrentRow("ColumnName").ToString(),"\(.*?\)").Value
Regards,
Hi,
It’s necessary to add backslash to your pattern and add columnanme to your CurrentRow variable as the following
System.Text.RegularExpressions.Regex.Match(CurrentRow("ColumnName").ToString(),"\(.*?\)").Value
Regards,
Hey!
Did you check the value in CurrentRow(“Responsible User”).ToString.Trim in the immediate panel?
If we are getting the value in immediate panel we can get the value n braces.
an you please check in this way?
Regards,
NaNi
Please try this expression:
CurrentRow(“Responsible user”).ToString.Trim.Split({“(”},StringSplitOptions.None)(1).TrimEnd
(“)”.ToCharArray)
It might be able to extract the data that you want.
Regards,
Aditya
This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.