当前位置:编程学习 > C#/ASP.NET >>

简单的正则表达式

一个字符

ID=[txtID.TEXT] AND NAME=[txtName.Text] AND Status='Y'

把中括号里面的提取出来。

[txtID.TEXT]
[txtName.Text] --------------------编程问答--------------------
		string s = "ID=[txtID.TEXT] AND NAME=[txtName.Text] AND Status='Y'";
MatchCollection matches = Regex.Matches(s, @"(?<=\[)[^]]+(?=\])");
foreach (Match match in matches)
Response.Write(match.Value + "<br/>");

输出:
txtID.TEXT
txtName.Text
--------------------编程问答--------------------
引用 1 楼 dalmeeme 的回复:
C# code

        string s = "ID=[txtID.TEXT] AND NAME=[txtName.Text] AND Status='Y'";
        MatchCollection matches = Regex.Matches(s, @"(?<=\[)[^]]+(?=\])");
        foreach (Match match in mat……


+1
补充:.NET技术 ,  C#
CopyRight © 2022 站长资源库 编程知识问答 zzzyk.com All Rights Reserved
部分文章来自网络,