コード例 #1
0
ファイル: TrainingSet.cs プロジェクト: bubibubi/RegexBuilder
        private string GetRegex_Simple()
        {
            List <Information> informationsInSentences = CheckAndGetInformationInSentences();

            string regex = ".*";

            foreach (Information informationsInSentence in informationsInSentences)
            {
                regex += InformationTypePattern.GetPattern(informationsInSentence.Type) + ".*";
            }

            return(regex);
        }
コード例 #2
0
ファイル: Information.cs プロジェクト: bubibubi/RegexBuilder
 public string GetPattern(int min, int max)
 {
     return(string.Format("(?<{0}>{1})", Name, InformationTypePattern.GetPattern(Type, min, max)));
 }