#!/bin/bash
if [[ '?xml   abc def?' =~ \?xml[[:space:]]*(.*)\? ]]; then
    echo "${BASH_REMATCH[1]}";
fi