MetaData:Description ^H- Hays- False Simple 'find & replace' if 'H' appears at the front of the tag name and is followed by a dash. What was not matched within the tag name is automatically recalled. ST(\d\d) Station$1 False Finds an instance where 'ST' is immediatley followed by two numbers and creates a capture group around those two numbers. The 'ST' is then aliased in the Replace dialogue box and the capture group is recalled. P(\d\d) Pump$1 False Same structure as Rule #2, just referencing an instance of 'P' immediately followed by two digits, then aliasing 'P' as 'Pump' before recalling the capture group. T(\d\d) Tower$1 False Same structure as Rule #2, just referencing an instance of 'T' immediately followed by two digits, then aliasing 'T' as 'Tower' before recalling the capture group. ^(.+-)(.+?)(##.+$) $1$3 False Creates three unique capture groups. The first capture group starts at the beginning of the tag name and moves forward until the last dash. The second capture group isolates the string between the last dash and the ##. The third capture groups includes the ## and all text afterward. ##(.+?) (.+$) $1 False Matches on the ## and creates a capture group from the text between the ## and the first space, essentially capturing only the first word of the Description metadata property. A second capture group is then created for the remaining string. Only the first capture group is recalled.