-
Notifications
You must be signed in to change notification settings - Fork 186
Expand file tree
/
Copy pathRegexHelperDialog.cs
More file actions
146 lines (114 loc) · 3.38 KB
/
RegexHelperDialog.cs
File metadata and controls
146 lines (114 loc) · 3.38 KB
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
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
using System.Runtime.Versioning;
using System.Text.RegularExpressions;
namespace LogExpert.UI.Dialogs;
[SupportedOSPlatform("windows")]
internal partial class RegexHelperDialog : Form
{
#region Fields
private const int MAX_HISTORY = 30;
private bool _caseSensitive;
private List<string> _expressionHistoryList = [];
private List<string> _testtextHistoryList = [];
#endregion
#region cTor
public RegexHelperDialog ()
{
InitializeComponent();
AutoScaleDimensions = new SizeF(96F, 96F);
AutoScaleMode = AutoScaleMode.Dpi;
Load += OnRegexHelperDialogLoad;
}
#endregion
#region Properties
public bool CaseSensitive
{
get => _caseSensitive;
set
{
_caseSensitive = value;
checkBoxCaseSensitive.Checked = value;
}
}
public string Pattern
{
get => comboBoxRegex.Text;
set => comboBoxRegex.Text = value;
}
public List<string> ExpressionHistoryList
{
get => _expressionHistoryList;
set => _expressionHistoryList = value;
}
public List<string> TesttextHistoryList
{
get => _testtextHistoryList;
set => _testtextHistoryList = value;
}
#endregion
#region Private Methods
private void UpdateMatches ()
{
textBoxMatches.Text = "";
try
{
Regex rex = new(comboBoxRegex.Text, _caseSensitive ? RegexOptions.None : RegexOptions.IgnoreCase);
var matches = rex.Matches(comboBoxTestText.Text);
foreach (Match match in matches)
{
textBoxMatches.Text += $"{match.Value}\r\n";
}
}
catch (ArgumentException)
{
textBoxMatches.Text = "No valid regex pattern";
}
}
private void LoadHistory ()
{
comboBoxRegex.Items.Clear();
comboBoxRegex.DataSource = _expressionHistoryList;
comboBoxTestText.Items.Clear();
comboBoxTestText.DataSource = _testtextHistoryList;
}
#endregion
#region Events handler
private void OnRegexHelperDialogLoad (object? sender, EventArgs e)
{
LoadHistory();
}
private void OnCaseSensitiveCheckBoxCheckedChanged (object sender, EventArgs e)
{
_caseSensitive = checkBoxCaseSensitive.Checked;
UpdateMatches();
}
private void OnButtonOkClick (object sender, EventArgs e)
{
var text = comboBoxRegex.Text;
_ = _expressionHistoryList.Remove(text);
_expressionHistoryList.Insert(0, text);
text = comboBoxTestText.Text;
_ = _testtextHistoryList.Remove(text);
_testtextHistoryList.Insert(0, text);
if (comboBoxRegex.Items.Count > MAX_HISTORY)
{
comboBoxRegex.Items.Remove(comboBoxRegex.Items.Count - 1);
}
if (comboBoxTestText.Items.Count > MAX_HISTORY)
{
comboBoxTestText.Items.Remove(comboBoxTestText.Items.Count - 1);
}
}
private void OnComboBoxRegexTextChanged (object sender, EventArgs e)
{
UpdateMatches();
}
private void OnComboBoxTestTextTextChanged (object sender, EventArgs e)
{
UpdateMatches();
}
private void OnButtonHelpClick (object sender, EventArgs e)
{
Help.ShowHelp(this, "LogExpert.chm", HelpNavigator.Topic, "RegEx.htm");
}
#endregion
}