User Tools

Site Tools


code_snippets

This is an old revision of the document!


General

Newlines

C# = Environment.Newline
VB = vbNewline

C#

I/O

Read Entire File into a String

…in one easy step.

String wholeFile = File.ReadAllText(@"C:\Temp.txt");

Filename to StreamReader

…in one easy step.

StreamReader sr = File.OpenText(@"C:\Temp.txt");

Regular Expressions

Notepad++

Searching for Email Addresses

[A-Za-z\-]+\.[A-Za-z\-]+@ccc\.govt\.nz
code_snippets.1231641828.txt.gz · Last modified: 2017/01/01 19:48 (external edit)

Donate Powered by PHP Valid HTML5 Valid CSS Driven by DokuWiki