-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathReadFile.cs
89 lines (81 loc) · 3.05 KB
/
ReadFile.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
using System;
using System.Collections.Generic;
using System.Diagnostics;
using System.IO;
using System.Linq;
using System.Text;
using System.Text.RegularExpressions;
using System.Threading.Tasks;
namespace HFLabsGeonames
{
class ReadFile
{
public static int GetCountLines(string fileName)
{
FileInfo info = new FileInfo(fileName);
Console.WriteLine($"### Load file: {info.Name} / {info.Length} byte");
int result = 0;
using (FileStream fs = File.Open(fileName, FileMode.Open, FileAccess.Read, FileShare.Read))
using (BufferedStream bs = new BufferedStream(fs))
using (StreamReader sr = new StreamReader(bs))
{
string s;
while ((s = sr.ReadLine()) != null)
result++;
}
GC.Collect();
return result;
}
/// <summary>
///
/// </summary>
/// <param name="fileName"></param>
/// <param name="searhStr"></param>
/// <param name="caseSensitive">учитывать регистр</param>
/// <returns></returns>
public static int GetCountStr(string fileName, string searhStr, bool caseSensitive = true)
{
FileInfo info = new FileInfo(fileName);
Console.WriteLine($"### Load file: {info.Name} / {info.Length} byte");
int result = 0;
using (FileStream fs = File.Open(fileName, FileMode.Open, FileAccess.Read, FileShare.Read))
using (BufferedStream bs = new BufferedStream(fs))
using (StreamReader sr = new StreamReader(bs))
{
string s;
while ((s = sr.ReadLine()) != null)
{
if (s.Contains(searhStr))
{
int count = (s.Length - (caseSensitive ? s.Replace(searhStr, string.Empty).Length : s.ToLower().Replace(searhStr.ToLower(), string.Empty).Length)) / searhStr.Length;
result += count;
}
}
}
GC.Collect();
return result;
}
public static int GetCountStrRegex(string fileName, string searhStr, bool caseSensitive = true)
{
FileInfo info = new FileInfo(fileName);
Console.WriteLine($"### Load file: {info.Name} / {info.Length} byte");
int result = 0;
using (FileStream fs = File.Open(fileName, FileMode.Open, FileAccess.Read, FileShare.Read))
using (BufferedStream bs = new BufferedStream(fs))
using (StreamReader sr = new StreamReader(bs))
{
string s;
while ((s = sr.ReadLine()) != null)
{
if (s.Contains(searhStr))
{
int count = new Regex(searhStr).Matches(s).Count;
result += count;
}
}
}
GC.Collect();
return result;
}
}
}