我想以字符串格式检索值:
public var any:int = 0;
public var anyId:Number = 2;
public var theEnd:Vector.<uint>;
public var test:Boolean = false;
public var others1:Vector.<int>;
public var firstValue:CustomType;
public var field2:Boolean = false;
public var secondValue:String = "";
public var isWorks:Boolean = false;
我想在自定义类Property中存储字段名称,类型和值:
public class Property
{
public string Name { get; set; }
public string Type { get; set; }
public string Value { get; set; }
}
使用Regex表达式获取这些值。
我该怎么办?
由于
编辑:我试过这个,但我不知道如何进一步使用矢量..等等
/public var ([a-zA-Z0-9]*):([a-zA-Z0-9]*)( = \"?([a-zA-Z0-9]*)\"?)?;/g
答案 0 :(得分:2)
好的,发布我的基于正则表达式的答案。
你的正则表达式 - /public var ([a-zA-Z0-9]*):([a-zA-Z0-9]*)( = \"?([a-zA-Z0-9]*)\"?)?;/g
- 包含正则表达式分隔符,它们在C#中不受支持,因此被视为文字符号。您需要删除它们和修饰符g
,因为要在C#Regex.Matches
或Regex.Match
中使用while
和Match.Success
/ .NextMatch()
获取多个匹配项可以使用。
我使用的正则表达式是(?<=\s*var\s*)(?<name>[^=:\n]+):(?<type>[^;=\n]+)(?:=(?<value>[^;\n]+))?
。包含换行符号,因为否定的字符类可以匹配换行符。
var str = "public var any:int = 0;\r\npublic var anyId:Number = 2;\r\npublic var theEnd:Vector.<uint>;\r\npublic var test:Boolean = false;\r\npublic var others1:Vector.<int>;\r\npublic var firstValue:CustomType;\r\npublic var field2:Boolean = false;\r\npublic var secondValue:String = \"\";\r\npublic var isWorks:Boolean = false;";
var rx = new Regex(@"(?<=\s*var\s*)(?<name>[^=:\n]+):(?<type>[^;=\n]+)(?:=(?<value>[^;\n]+))?");
var coll = rx.Matches(str);
var props = new List<Property>();
foreach (Match m in coll)
props.Add(new Property(m.Groups["name"].Value,m.Groups["type"].Value, m.Groups["value"].Value));
foreach (var item in props)
Console.WriteLine("Name = " + item.Name + ", Type = " + item.Type + ", Value = " + item.Value);
或者使用LINQ:
var props = rx.Matches(str)
.OfType<Match>()
.Select(m =>
new Property(m.Groups["name"].Value,
m.Groups["type"].Value,
m.Groups["value"].Value))
.ToList();
类示例:
public class Property
{
public string Name { get; set; }
public string Type { get; set; }
public string Value { get; set; }
public Property()
{}
public Property(string n, string t, string v)
{
this.Name = n;
this.Type = t;
this.Value = v;
}
}
关于绩效的说明:
正则表达式不是最快的,但它肯定胜过另一个答案中的正则表达式。这是在regexhero.net执行的测试:
答案 1 :(得分:1)
看来,你不想要正则表达式;在一个简单的情况下 正如您所提供的那样:
String text =
@"public var any:int = 0;
public var anyId:Number = 2;
public var theEnd:Vector.<uint>;
public var test:Boolean = false;
public var others1:Vector.<int>;
public var firstValue:CustomType;
public var field2:Boolean = false;";
List<Property> result = text
.Split(new Char[] {'\r','\n'}, StringSplitOptions.RemoveEmptyEntries)
.Select(line => {
int varIndex = line.IndexOf("var") + "var".Length;
int columnIndex = line.IndexOf(":") + ":".Length;
int equalsIndex = line.IndexOf("="); // + "=".Length;
// '=' can be absent
equalsIndex = equalsIndex < 0 ? line.Length : equalsIndex + "=".Length;
return new Property() {
Name = line.Substring(varIndex, columnIndex - varIndex - 1).Trim(),
Type = line.Substring(columnIndex, columnIndex - varIndex - 1).Trim(),
Value = line.Substring(equalsIndex).Trim(' ', ';')
};
})
.ToList();
如果文字可以包含评论和其他工作人员,例如
"public (*var is commented out*) var sample: int = 123;;;; // another comment"
您必须实现解析器
答案 2 :(得分:0)
您可以使用以下模式:
\s*(?<vis>\w+?)\s+var\s+(?<name>\w+?)\s*:\s*(?<type>\S+?)(\s*=\s*(?<value>\S+?))?\s*;
匹配一行中的每个元素。在量词之后附加?
导致非贪婪的匹配,这使得模式更简单 - 不需要否定所有不需要的类。
值是可选的,因此值组包含在另一个可选组(\s*=\s*(?<value>\S+?))?
使用RegexOptions.Multiline
选项意味着我们不必担心意外匹配换行符。
以下示例中的C#6语法不是必需的,但是多行字符串文字和插值字符串可以使代码更清晰。
var input= @"public var any:int = 0;
public var anyId:Number = 2;
public var theEnd:Vector.<uint>;
public var test:Boolean = false;
public var others1:Vector.<int>;
public var firstValue:CustomType;
public var field2:Boolean = false;
public var secondValue:String = """";
public var isWorks:Boolean = false;";
var pattern= @"\s*(?<vis>\w+?)\s+var\s+(?<name>\w+?)\s*:\s*(?<type>\S+?)(\s*=\s*(?<value>\S+?))?\s*;"
var regex = new Regex(pattern, RegexOptions.Multiline);
var results=regex.Matches(input);
foreach (Match m in results)
{
var g = m.Groups;
Console.WriteLine($"{g["name"],-15} {g["type"],-10} {g["value"],-10}");
}
var properties = (from m in results.OfType<Match>()
let g = m.Groups
select new Property
{
Name = g["name"].Value,
Type = g.["type"].Value,
Value = g["value"].Value
})
.ToList();
我会考虑使用像ANTLR这样的解析器生成器,如果我必须解析更复杂的输入或者有多个模式匹配。学习如何编写语法需要一些时间,但是一旦你学会了它,就很容易创建能够匹配需要非常复杂的正则表达式的输入的解析器。空白管理也变得容易多了
在这种情况下,语法可能类似于:
property : visibility var name COLON type (EQUALS value)? SEMICOLON;
visibility : ALPHA+;
var : ALPHA ALPHA ALPHA;
name : ALPHANUM+;
type : (ALPHANUM|DOT|LEFT|RIGHT);
value : ALPHANUM
| literal;
literal : DOUBLE_QUOTE ALPHANUM* DOUBLE_QUOTE;
ALPHANUM : ALPHA
| DIGIT;
ALPHA : [A-Z][a-z];
DIGIT : [0-9];
...
WS : [\r\n\s] -> skip;
使用解析器,添加例如注释就像在comment
规则中SEMICOLON
之前添加property
一样简单,并且新的comment
规则与评论