尝试使用以下正则Expression式时遇到问题:
string profileConfig = file.ReadAllText(str); string startIndex = "user_pref("network.proxy.autoconfig_url",""; string endindex = """; var regex = startIndex + "(.*)" + endindex; // Here we call Regex.Match. Match match = Regex.Match(profileConfig,regex,RegexOptions.IgnoreCase); // Here we check the Match instance. if (match.Success) { // Finally,we get the Group value and display it. string key = match.Groups[1].Value; MessageBox.Show(key); }
我得到的错误:
附加信息:parsing“user_pref(”network.proxy.autoconfig_url“,”(。*)“” – 不够)。
我的正则Expression式在某种程度上是畸形的吗?
如何使应用程序运行在任何windows版本没有额外的库?
当我在文本框中input时出现恼人的嘟嘟声
如何在不安装MS Office并且不使用Interop库的情况下读取服务器中的MS Office文件?
.NET是否支持windows Eventing 6.0?
如何为商业windows应用程序创buildtesting环境?
如何刷新目录作为修复fileSystemWatcher的一种方法
为什么在通过Shell32读取公共快捷方式时遇到E_ACCESSDENIED?
从其hex数中获取windows系统错误代码标题/说明
如果windows服务停止,给我发电子邮
windows 8 Embedded中缺lessMSVCR120_CLR0400.dll
如果你想要匹配的字符(字面意思是:
string startIndex = "user_pref\("network.proxy.autoconfig_url","";
正确的:
"user_pref("network. -> "user_pref("network. ^
总结以上是内存溢出为你收集整理的正则expression式的困扰C#全部内容,希望文章能够帮你解决正则expression式的困扰C#所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)