Quote:
Originally Posted by welshboy2005
Hi,
I'm looking to add some data to a web page using the STringbuilder method. However I as part of this I want to add in " eg.
MenuString.Append("Testing"are"");
However as soon as it reaches the second " it assumes thats the end of the string and won't add the rest of the data. Can anyone tell me how make it pick up those ".
Cheers
|
how to search the string in StringBuilder?
For example:
StringBuilder MyStringBuilder = new StringBuilder();
MyStringBuilder.Append(" What a beautiful day|");
MyStringBuilder.Append("Hello");
so, In this stringBulider how to Identify the "Hello" available r not.