...
In the Configure Fields page in your DataBridge Profile you can now see the new field with the extracted data. It can now be mapped to the correct field in Superoffice.
Some other regular expressions which could have been used:
Exactly 7 characters between parentheses \((.{7})\)
At least 1 alphanumeric character between parentheses \(([A-Za-z0-9]+)\)
Exactly 2 uppercase letters, exactly 5 digits between parentheses \(([A-Z]{2}[0-9]{5})\)
Exactly 2 uppercase letters, exactly 5 digits [A-Z]{2}[0-9]{5}
At least 1 letter followed by a comma and a space, followed by at least one letter and a space followed by a parenthesis then capturing 2 uppercase letters and 5 digits followed by a parenthesis [A-Za-z]+, [A-Za-z]+ \(([A-Z]{2}[0-9]{5})\)Please visit this page for more examples to inspire you.
Note: We support two scenarios: (1) regex without any capturing groups and (2) regex with one capturing group
(1) Anything that match the pattern will be used as the value (my example before the last example)
(2) The value in the capturing group will be uased as the value (all other examples)
...