首页 > 代码库 > 字符串的系列操作
字符串的系列操作
/** * @param regex * 正则表达式字符串 * @param str * 要匹配的字符串 * @return 如果str 符合 regex的正则表达式格式,返回true, 否则返回 false; */ private static boolean match(String regex, String str) { Pattern pattern = Pattern.compile(regex); Matcher matcher = pattern.matcher(str); return matcher.matches(); } // 3. 检查字符串重复出现的词 // // private void btnWord_Click(object sender, EventArgs e) // { // System.Text.RegularExpressions.MatchCollection matches = // System.Text.RegularExpressions.Regex.Matches(label1.Text, // // @"\b(?<word>\w+)\s+(\k<word>)\b", // System.Text.RegularExpressions.RegexOptions.Compiled | // System.Text.RegularExpressions.RegexOptions.IgnoreCase); // if (matches.Count != 0) // { // foreach (System.Text.RegularExpressions.Match match in matches) // { // string word = match.Groups["word"].Value; // MessageBox.Show(word.ToString(),"英文单词"); // } // } // else { MessageBox.Show("没有重复的单词"); } // // // } // // 4. 替换字符串 // // private void button1_Click(object sender, EventArgs e) // { // // string strResult = // System.Text.RegularExpressions.Regex.Replace(textBox1.Text, // @"[A-Za-z]\*?", textBox2.Text); // MessageBox.Show("替换前字符:" + "\n" + textBox1.Text + "\n" + "替换的字符:" + "\n" // + textBox2.Text + "\n" + // // "替换后的字符:" + "\n" + strResult,"替换"); // // } // // 5. 拆分字符串 // // private void button1_Click(object sender, EventArgs e) // { // //实例: 甲025-8343243乙0755-2228382丙029-32983298389289328932893289丁 // foreach (string s in // System.Text.RegularExpressions.Regex.Split(textBox1.Text,@"\d{3,4}-\d*")) // { // textBox2.Text+=s; //依次输出 "甲乙丙丁" // } // // }
字符串的系列操作
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。