If  string xml;  contains following xml as text
<table xmlns="http://www.mynamespace.org/standard">
  <tr>
    <td>Apples</td>
    <td>Bananas</td>
  </tr>
</table> 
I want to find the value of xmlns attribute from this string. In this example, I want to find a value like
string namespace =? 
and namespace should contain value "http://www.mynamespace.org/standard".
How this can be found effectively?
 
     
    