A
Aaron
I need a function in c# that finds and outputs word in bold.
string input = "<b>Hello my name</b> is John"
public string GetBoldWords()
{
//the function
return s // s = "Hello my name"
}
thanks
string input = "<b>Hello my name</b> is John"
public string GetBoldWords()
{
//the function
return s // s = "Hello my name"
}
thanks