Is this the format to parse a string and return the value between the item?
Regex pRE = new Regex("<File_Na me>.*>(?<inside Text>.*)</File_Name>");
I am trying to parse this string.
<File_Name>Serv ices</File_Name>
Thanks
Regex pRE = new Regex("<File_Na me>.*>(?<inside Text>.*)</File_Name>");
I am trying to parse this string.
<File_Name>Serv ices</File_Name>
Thanks
Comment