2011-05-26から1日間の記事一覧

【C#】正規表現

C#

■ Regex.IsMatch() private void button1_Click(object sender, EventArgs e) { string tel = "090-XXXX-YYYY"; bool isMatch = Regex.IsMatch(tel, "090"); if (isMatch) { this.label1.Text = "Found it!"; } } ■ Regex.Match() private void button2_Clic…