If you need to fetch a substring, but you have more than one delimiter, throw them all in there on the -F option to awk.
Given the text <VirtualHost 192.168.1.0:80>:
$ awk -F" |>" '/^<Virtual/ {print $2}'
Would return 192.168.1.0:80.
awkdelimitershell