Hi @interloper , using the following regex, you can extract campus_site_code and function fields that you can use for your checks: | rex "host\=\s*(?<campus_site_code>\w\d{3,5})(?<function>\w\w)" you can check this regex at https://regex101.com/r/3rZhAE/1 Ciao. Giuseppe
... View more