hello sir,
please help me out for a asp.net(c#) problem.
i want to split string( a.<span style="font: 7pt 'Times New Roman'"> & nbsp; &nbs p; </span></span>f is continuous if and only if a > 0 </p>
<p class="MsoNorma l" style="margin-left: 1in; text-indent: -0.25in; mso-list: l0 level2 lfo1; tab-stops: list 1.0in"><span style="mso-list: Ignore">b.<span style="font: 7pt 'Times New Roman'"> & nbsp; &nbs p; </span></span>f<span style="font-family: Symbol; mso-ascii-font-family: 'Times New Roman'; mso-hansi-font-family: 'Times New Roman'; mso-char-type: symbol; mso-symbol-font-family: Symbol"><span style="mso-char-type: symbol; mso-symbol-font-family: Symbol">¢</span></span>(0) exists if and only if a > 1</p>
)
and the delimiters are a. and b. my code is
using System.Text.Reg ularExpressions ;
string[] abc = Regex.Split(fin alString, "( a. | b. )");
foreach (string match in abc)
{
string FinalSplitStrin g= match;
}
where final string is the string which i mention above.
how can i split he above string?
thanking you.
with regards,
kunal
please help me out for a asp.net(c#) problem.
i want to split string( a.<span style="font: 7pt 'Times New Roman'"> & nbsp; &nbs p; </span></span>f is continuous if and only if a > 0 </p>
<p class="MsoNorma l" style="margin-left: 1in; text-indent: -0.25in; mso-list: l0 level2 lfo1; tab-stops: list 1.0in"><span style="mso-list: Ignore">b.<span style="font: 7pt 'Times New Roman'"> & nbsp; &nbs p; </span></span>f<span style="font-family: Symbol; mso-ascii-font-family: 'Times New Roman'; mso-hansi-font-family: 'Times New Roman'; mso-char-type: symbol; mso-symbol-font-family: Symbol"><span style="mso-char-type: symbol; mso-symbol-font-family: Symbol">¢</span></span>(0) exists if and only if a > 1</p>
)
and the delimiters are a. and b. my code is
using System.Text.Reg ularExpressions ;
string[] abc = Regex.Split(fin alString, "( a. | b. )");
foreach (string match in abc)
{
string FinalSplitStrin g= match;
}
where final string is the string which i mention above.
how can i split he above string?
thanking you.
with regards,
kunal
Comment