在C#中使用通配符匹配字符串
常用的通配符是星号(*)。它表示一个字符串中的零个或多个字符。
在以下示例中,星号用于匹配以m开头和以e结尾的单词-
@”\bt\S*s\b”
以下是完整的代码-
示例
using System;
using System.Text.RegularExpressions;
namespace Demo {
public class Program {
private static void showMatch(string text, string expr) {
MatchCollection mc = Regex.Matches(text, expr);
foreach (Match m in mc) {
Console.WriteLine(m);
}
}
public static void Main(string[] args) {
string str = "toss cross tacos texas";
Console.WriteLine("Matching words that start with 't' and ends with 's':");
showMatch(str, @"\bt\S*s\b");
}
}
}输出结果
Matching words that start with 't' and ends with 's': toss tacos texas
热门推荐
4 十月简短祝福语
10 顾客简短祝福语大全集
11 万寿祝福语简短
12 雪后早晨简短的祝福语
13 Q穷人结婚祝福语简短
14 青春告白祖国简短祝福语
15 别人生辰祝福语简短
16 婆婆生日祝福语短语简短
17 公司春节祝福语和简短
18 宝子生日祝福语简短