When the following is executed:
foreach (String fromList in columns)
{
query += "`" + fromList + "`,";
}
query.TrimEnd(',');
The comma is not trimmed from the string.
What am I doing wrong?
|
|
|||||||||||
|
|
Strings are immutable, so you need to store the return value from TrimEnd.
Though there is an easier way to do this:
|
|||
|
Use the below example:
|
|||
|
|
|
It should be
|
|||
|
|
|
Strings are immutable. If you want the result after applying
Here I've assigned it back to itself. Of course, better would be something like:
instead of the loop + edit. |
||||
|
|
String.Joinwhich inserts separator characters between each string to be joined together. Slightly more complex here to first wrap each string with `` characters, but still usually a better option than building a complete string, then re-modifying it to remove characters. – Damien_The_Unbeliever Aug 24 '12 at 18:51