Ejemplo n.º 1
0
 private void btMatch_Click(object sender, EventArgs e)
 {
     Matched oMatched = new Matched();
     oMatched.RE = new Regex(@txtRegex.Text, IgnoreCase);
     oMatched.TextToMatch = txtMatchText.Text;
     oMatched.ShowDialog(this);
 }
Ejemplo n.º 2
0
        private void btMatch_Click(object sender, EventArgs e)
        {
            Matched oMatched = new Matched();

            oMatched.RE          = new Regex(@txtRegex.Text, IgnoreCase);
            oMatched.TextToMatch = txtMatchText.Text;
            oMatched.ShowDialog(this);
        }