Click here to Skip to main content
15,898,373 members
Home / Discussions / C#
   

C#

 
Questionreading byte[] instead of binary reader Pin
Xmen Real 4-Oct-07 6:38
professional Xmen Real 4-Oct-07 6:38 
AnswerRe: reading byte[] instead of binary reader Pin
Rob Philpott4-Oct-07 7:05
Rob Philpott4-Oct-07 7:05 
GeneralRe: reading byte[] instead of binary reader Pin
Xmen Real 4-Oct-07 14:23
professional Xmen Real 4-Oct-07 14:23 
AnswerRe: reading byte[] instead of binary reader Pin
Lutosław4-Oct-07 7:23
Lutosław4-Oct-07 7:23 
QuestionHow to bind a vertical scrollbar control to a treeview Pin
Gwidiom4-Oct-07 5:59
Gwidiom4-Oct-07 5:59 
QuestionDeleting words from string Pin
Ryno Burger4-Oct-07 5:42
Ryno Burger4-Oct-07 5:42 
AnswerRe: Deleting words from string Pin
Anthony Mushrow4-Oct-07 5:45
professionalAnthony Mushrow4-Oct-07 5:45 
GeneralRe: Deleting words from string Pin
KaineDunno4-Oct-07 5:50
KaineDunno4-Oct-07 5:50 
what you could do is keep it simple Smile | :)

use string.Replace.

ex:

string x = "This is a test,test";
string y = x.Replace("test","");
Console.WriteLine(y);

output should look like "This is a , "

have fun

Kaine
GeneralRe: Deleting words from string Pin
Anthony Mushrow4-Oct-07 6:00
professionalAnthony Mushrow4-Oct-07 6:00 
GeneralRe: Deleting words from string Pin
Ryno Burger4-Oct-07 6:00
Ryno Burger4-Oct-07 6:00 
GeneralRe: Deleting words from string Pin
Ryno Burger4-Oct-07 6:11
Ryno Burger4-Oct-07 6:11 
GeneralRe: Deleting words from string Pin
Ryno Burger4-Oct-07 6:19
Ryno Burger4-Oct-07 6:19 
GeneralRe: Deleting words from string Pin
Ryno Burger4-Oct-07 6:31
Ryno Burger4-Oct-07 6:31 
GeneralRe: Deleting words from string Pin
KaineDunno4-Oct-07 8:22
KaineDunno4-Oct-07 8:22 
GeneralRe: Deleting words from string Pin
Ryno Burger4-Oct-07 8:44
Ryno Burger4-Oct-07 8:44 
GeneralRe: Deleting words from string Pin
Andrew Rissing4-Oct-07 9:08
Andrew Rissing4-Oct-07 9:08 
GeneralRe: Deleting words from string Pin
Judah Gabriel Himango4-Oct-07 9:11
sponsorJudah Gabriel Himango4-Oct-07 9:11 
AnswerRe: Deleting words from string Pin
Christian Graus4-Oct-07 10:54
protectorChristian Graus4-Oct-07 10:54 
AnswerRe: Deleting words from string Pin
Luc Pattyn4-Oct-07 12:08
sitebuilderLuc Pattyn4-Oct-07 12:08 
GeneralRe: Deleting words from string Pin
Anthony Mushrow4-Oct-07 12:27
professionalAnthony Mushrow4-Oct-07 12:27 
GeneralRe: Deleting words from string Pin
Luc Pattyn4-Oct-07 12:44
sitebuilderLuc Pattyn4-Oct-07 12:44 
GeneralRe: Deleting words from string Pin
Anthony Mushrow4-Oct-07 15:02
professionalAnthony Mushrow4-Oct-07 15:02 
QuestionSingle instance over a local area network Pin
Martin Hart Turner4-Oct-07 5:37
Martin Hart Turner4-Oct-07 5:37 
AnswerRe: Single instance over a local area network Pin
KaineDunno4-Oct-07 5:53
KaineDunno4-Oct-07 5:53 
GeneralRe: Single instance over a local area network Pin
Anthony Mushrow4-Oct-07 5:55
professionalAnthony Mushrow4-Oct-07 5:55 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.