Converting / characters in BardecodeFiler
Here is what you need to use in a Reformat Table for converting a barcode value such as 123/456 to 123-456
Line 1, left hand side:
([^\/]+)\/([^\/]+)
Line 1, right hand side:
{1}-{2}
Explanation:
\/ matches a single / character (the \ is needed because / is a special character for regex)
[^\/] is the set of characters that does not include the / character
[^\/]+ is one or more non / characters
([^\/]+) makes a group that can be referenced using {N} on the right hand side where N is the position of the group.