Regtex to check if space between an opening and closing bracket in a data item

Gary96

Member
Hi All,

Looking to see what is the Regex to check if there is space between an opening and closing bracket in a data item.

( john) True
(john) False
 

sahil_raina_91

Active Member
Hi All,

Looking to see what is the Regex to check if there is space between an opening and closing bracket in a data item.

( john) True
(john) False

You can achieve this without regex.
Use this in calculation stage, TEXT is the data item :
InStr(Mid([TEXT],InStr([TEXT],"("),InStr([TEXT],")")-InStr([TEXT],"(")+1)," ") > 0
True = Space exists
False = Space does not exists
 
Top