Include Page | ||||
---|---|---|---|---|
|
...
Code Block |
---|
(?<productCode>^(F-|G-|V-)[^_]*?)_() |
Get any
...
product code from the original filename
Code Block |
---|
(?<productCode>^[0-9]{2} [0-9]{3} [^-]*)-(?<filename>.*) |
...
Create a group "productCode"
Start a the beginning ^
Get the first two numbers
Get the next three numbers
Get the rest until you find a dash -
Input | Original File name | 01 747 7715 7754-Set_HighRes_4035.jpg |
Output | productCode (from Regular Expression) | 01 747 7715 7754 |
Output | filenmae (from Regular Expression) | Set_HighRes_4035.jpg |
Get code that starts with MT-
...
Create a group "mediaType"
Get a code that starts with MT
Input | Original File name | Summer-Campaign_MT-EMOS-Set_HighRes_4035.jpg |
Output | mediaType (from Regular Expression) | MT-EMOS |