我想为 vCard 属性生成正则表达式。
例如:
版本:
Regex regex = new Regex(@"(?<strElement>(VERSION)) (:(?<strVERSION>[^\n\r]*))", options);
Match m = regex.Match(s);
如何编写其他 vcard proparty,如 ADR、AGENT、PHOTO、ETC...
我想为 vCard 属性生成正则表达式。
例如:
版本:
Regex regex = new Regex(@"(?<strElement>(VERSION)) (:(?<strVERSION>[^\n\r]*))", options);
Match m = regex.Match(s);
如何编写其他 vcard proparty,如 ADR、AGENT、PHOTO、ETC...