C# 正则表达式匹怎么提取单引号和双引号 中的值 5
像常见的width=“680”height=“400”width='480'height='400'我想用正则表达式截取单引号和双引号中的值,怎么写呢?...
像常见的
width=“680”height=“400”
width= '480' height= '400'
我想用正则表达式截取单引号和双引号中的值,怎么写呢? 展开
width=“680”height=“400”
width= '480' height= '400'
我想用正则表达式截取单引号和双引号中的值,怎么写呢? 展开
1个回答
展开全部
正则表达式 [\"'](.*?)[\"']
完整的用C#正则表达式提取单引号和双引号中的值的C#语言程序如下
using System;
using System.Text.RegularExpressions;
namespace MatchApplication{
class MatchClass{
static void Main(string[] args){
string s="width= \"680\" height= \"400\" width= '480' height= '400'";
MatchCollection mc =Regex.Matches(s,"[\"'](.*?)[\"']");
foreach (Match m in mc){
Console.WriteLine(m.Groups[1].Value);
}
Console.ReadKey();
}
}
}
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询