Click here to Skip to main content
15,893,190 members
Home / Discussions / C#
   

C#

 
AnswerRe: XML Serialization Pin
leppie26-Jan-06 21:30
leppie26-Jan-06 21:30 
GeneralRe: XML Serialization Pin
LighthouseJ27-Jan-06 5:41
LighthouseJ27-Jan-06 5:41 
QuestionWonder of DataGrid imort from Excel file Pin
Libra26-Jan-06 15:43
Libra26-Jan-06 15:43 
AnswerRe: Wonder of DataGrid imort from Excel file Pin
Kodanda Pani26-Jan-06 20:36
Kodanda Pani26-Jan-06 20:36 
GeneralRe: Wonder of DataGrid imort from Excel file Pin
Libra27-Jan-06 16:21
Libra27-Jan-06 16:21 
QuestionRead and Replace Pin
picasso226-Jan-06 12:29
picasso226-Jan-06 12:29 
AnswerRe: Read and Replace Pin
Ravi Bhavnani26-Jan-06 12:42
professionalRavi Bhavnani26-Jan-06 12:42 
AnswerRe: Read and Replace Pin
DigitalKing26-Jan-06 14:30
DigitalKing26-Jan-06 14:30 
public void FileReplaceString(string path, string find, string replace, bool matchcase)
{
    System.IO.TextReader r = new System.IO.StreamReader(path);
    string text = r.ReadToEnd();
    r.Close();
    r.Dispose();
    text = System.Text.RegularExpressions.Regex.Replace(text, System.Text.RegularExpressions.Regex.Escape(find), replace, (matchcase)?System.Text.RegularExpressions.RegexOptions.None:System.Text.RegularExpressions.RegexOptions.IgnoreCase);
    System.IO.TextWriter w = new System.IO.StreamWriter(path);
    w.Write(text);
    w.Flush();
    w.Close();
    w.Dispose();
}
To call:
<br />
FileReplaceString(@"C:\Document.txt", "FLAT", "ZAG", false);<br />

QuestionDisplay live video from an ethernet camera Pin
greg ross26-Jan-06 12:08
greg ross26-Jan-06 12:08 
AnswerRe: Display live video from an ethernet camera Pin
Daniel Santillanes26-Jan-06 13:00
professionalDaniel Santillanes26-Jan-06 13:00 
GeneralRe: Display live video from an ethernet camera Pin
greg ross31-Jan-06 3:18
greg ross31-Jan-06 3:18 
QuestionFun with generics Pin
tantiboh26-Jan-06 12:07
tantiboh26-Jan-06 12:07 
AnswerRe: Fun with generics Pin
Guffa26-Jan-06 12:27
Guffa26-Jan-06 12:27 
AnswerRe: Fun with generics Pin
Le centriste27-Jan-06 1:38
Le centriste27-Jan-06 1:38 
QuestionWindows refresh Pin
Kwai Cheng Kane26-Jan-06 9:43
Kwai Cheng Kane26-Jan-06 9:43 
AnswerRe: Windows refresh Pin
James Gupta26-Jan-06 10:21
professionalJames Gupta26-Jan-06 10:21 
GeneralRe: Windows refresh Pin
Kwai Cheng Kane26-Jan-06 10:28
Kwai Cheng Kane26-Jan-06 10:28 
GeneralRe: Windows refresh Pin
James Gupta26-Jan-06 10:58
professionalJames Gupta26-Jan-06 10:58 
Questionsystem tray Pin
mehrdadc4826-Jan-06 9:36
mehrdadc4826-Jan-06 9:36 
AnswerRe: system tray Pin
André Ziegler26-Jan-06 10:02
André Ziegler26-Jan-06 10:02 
AnswerRe: system tray Pin
Ravi Bhavnani26-Jan-06 10:20
professionalRavi Bhavnani26-Jan-06 10:20 
QuestionStrings and Interop Pin
Beringer26-Jan-06 9:27
Beringer26-Jan-06 9:27 
AnswerRe: Strings and Interop Pin
Beringer26-Jan-06 9:50
Beringer26-Jan-06 9:50 
GeneralRe: Strings and Interop Pin
Andy Moore26-Jan-06 11:17
Andy Moore26-Jan-06 11:17 
GeneralRe: Strings and Interop Pin
Beringer26-Jan-06 17:52
Beringer26-Jan-06 17:52 

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.