// Version info is everything between the slash and the space
int slash = serverInfo.indexOf('/");
if (slash == -1) return null;
int space = serverInfo.indexOf(' ", slash);
if (space == -1) space = serverInfo.length();
return serverInfo.substring(slash + 1, space);