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 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 |
using System; using System.Collections.Generic; using System.Text; using System.Text.RegularExpressions; namespace RegExTest { class Program { static void Main(string[] args) { // "abcdef"の中に"abc"があればTrue if(Regex.IsMatch("abcdef", "abc")) { Console.WriteLine("True"); } // 大文字小文字は区別されるのでFalse if (Regex.IsMatch("abcdef", "ABC")) { Console.WriteLine("True"); } // IgnoreCaseをつければTrue if (Regex.IsMatch("abcdef", "ABC", RegexOptions.IgnoreCase)) { Console.WriteLine("True"); } // aで始まっていればTrue if (Regex.IsMatch("abcdef", @"^a")) { Console.WriteLine("True"); } if (Regex.IsMatch("bcdef", @"^a")) { Console.WriteLine("True"); } // fで終わっていればTrue if (Regex.IsMatch("abcdef", @"f$")) { Console.WriteLine("True"); } if (Regex.IsMatch("abcde", @"f$")) { Console.WriteLine("True"); } // aで始まってfで終わっていればTrue // .は任意の一文字 // *は一つ前の文字の0個以上の任意の文字列 string pattern = @"^a.*f$"; if (Regex.IsMatch("abcdef", pattern)) { Console.WriteLine("True"); } if (Regex.IsMatch("abcde", pattern)) { Console.WriteLine("True"); } if (Regex.IsMatch("bcdef", pattern)) { Console.WriteLine("True"); } if (Regex.IsMatch("af", pattern)) { Console.WriteLine("True"); } // 検索で何個見つかったか調べる MatchCollection mc; mc = Regex.Matches("abcdef", "abc"); Console.WriteLine(mc.Count); // 1 mc = Regex.Matches("abcdefabcdef", "abc"); Console.WriteLine(mc.Count); // 2 mc = Regex.Matches("123458", "abc"); Console.WriteLine(mc.Count); // 0 // 文字列の中のabcをxxxに変換 string s; s = Regex.Replace("abcdef", "abc", "xxx"); Console.WriteLine(s); // "xxxdef" s = Regex.Replace("abcabcdef", "abc", "xxx"); Console.WriteLine(s); // "xxxxxxdef" s = Regex.Replace("12345", "abc", "xxx"); Console.WriteLine(s); // "12345" // 文字列の中のabcを大文字小文字を逆にして変換 s = Regex.Replace("abcdef", "abc", trans, RegexOptions.IgnoreCase); Console.WriteLine(s); // "ABCdef" s = Regex.Replace("zzzABCzzz", "abc", trans, RegexOptions.IgnoreCase); Console.WriteLine(s); // "zzzabczzz" s = Regex.Replace("zzzAbCzzz", "abc", trans, RegexOptions.IgnoreCase); Console.WriteLine(s); // "zzzaBczzz" s = Regex.Replace("abcAbcAAAAABcceAbcabcAbC", "abc", trans, RegexOptions.IgnoreCase); Console.WriteLine(s); // "ABCaBCAAAAabCceaBCABCaBc" // 文字列の中の\nを改行、\tをタブ、\\を\に変換 s = Regex.Replace(@"aaa\nbbb\nccc", @"\\.", trans2); Console.WriteLine(s); // aaa // bbb // ccc s = Regex.Replace(@"\\", @"\\.", trans2); Console.WriteLine(s); // \ // パターンが決まっている場合はあらかじめコンパイルしておく、下は上と同じ Regex r = new Regex(@"\\."); s = r.Replace(@"aaa\nbbb\nccc", trans2); Console.WriteLine(s); // aaa // bbb // ccc s = r.Replace(@"\\", trans2); Console.WriteLine(s); // \ } static string trans2(Match m) { string ret = string.Empty; string x = m.ToString(); if (x == @"\n") { ret = "\r\n"; } else if (x == @"\t") { ret = "\t"; } else if (x == @"\\") { ret = "\\"; } return ret; } static string trans(Match m) { string ret = string.Empty; string x = m.ToString(); foreach (char c in x) { if (char.IsLower(c)) { ret += char.ToUpper(c); } else { ret += char.ToLower(c); } } return ret; } } } |