HiI want to take ${trusted['certname']} and extract the hostname short form from it.so if i had thisbox.abc.com.au. I would like to get just thisbox
$pp_shortcertname= "${trusted['certname']}".match(/([^.]+)\./)[1]not sure I fully understand why this works and [] doesn't.Not 100% sure I understand what the [1] does !