固定格式小弟我汉字怎么用正则表达式检测

固定格式我汉字如何用正则表达式检测我要检测字符串是否为 如果***就** 格式,用正则表达式怎么写?[解决办

固定格式我汉字如何用正则表达式检测
我要检测字符串是否为 如果***就** 格式,用正则表达式怎么写?

[解决办法]

VB.NET code
dim s as string = "xxxx"if Regex.IsMatch(s,"如果.+?就.*?") thenend if