G
Guest
I need to replace certain words in a string as below:
strTitle="Microsoft test title for project ABC";
strKeywords="title project";
what I want to do is: "Bold" the keywords "title" and "project" in the string strTitle.
Microsoft test <b>title</b> for <b>project</b> ABC
Any suggestions on how to do this one ? I am trying to do it in C#. Thanks!.
strTitle="Microsoft test title for project ABC";
strKeywords="title project";
what I want to do is: "Bold" the keywords "title" and "project" in the string strTitle.
Microsoft test <b>title</b> for <b>project</b> ABC
Any suggestions on how to do this one ? I am trying to do it in C#. Thanks!.