Regex reg = new Regex(@"<!--此注释用于传真接口([/s/S]*?)勿删除-->");
Match m = reg.Match(m_response);
if (m.Success)
{
hotelid=m.Result("$1");
}
Regex reg = new Regex(@"<!--此注释用于传真接口([/s/S]*?)勿删除-->");
Match m = reg.Match(m_response);
if (m.Success)
{
hotelid=m.Result("$1");
}