次のファイルがあり、解析する必要があります
--TestFile
Start ASDF123
Name "John"
Address "#6,US"
end ASDF123
で始まる行--
はコメント行として扱われます。ファイルは「開始」で始まり、で終わりend
ます。後の文字列Start
はtheUserID
とthenであり、name
andaddress
は二重引用符の中にあります。
ファイルを解析し、解析したデータをxmlファイルに書き込む必要があります。
したがって、結果のファイルは次のようになります
<ASDF123>
<Name Value="John" />
<Address Value="#6,US" />
</ASDF123>
現在、パターンマッチング(Regular Expressions
)を使用して上記のファイルを解析しています。これが私のサンプルコードです。
/// <summary>
/// To Store the row data from the file
/// </summary>
List<String> MyList = new List<String>();
String strName = "";
String strAddress = "";
String strInfo = "";
メソッド:ReadFile
/// <summary>
/// To read the file into a List
/// </summary>
private void ReadFile()
{
StreamReader Reader = new StreamReader(Application.StartupPath + "\\TestFile.txt");
while (!Reader.EndOfStream)
{
MyList.Add(Reader.ReadLine());
}
Reader.Close();
}
メソッド:FormateRowData
/// <summary>
/// To remove comments
/// </summary>
private void FormateRowData()
{
MyList = MyList.Where(X => X != "").Where(X => X.StartsWith("--")==false ).ToList();
}
メソッド:ParseData
/// <summary>
/// To Parse the data from the List
/// </summary>
private void ParseData()
{
Match l_mMatch;
Regex RegData = new Regex("start[ \t\r\n]*(?<Data>[a-z0-9]*)", RegexOptions.IgnoreCase);
Regex RegName = new Regex("name [ \t\r\n]*\"(?<Name>[a-z]*)\"", RegexOptions.IgnoreCase);
Regex RegAddress = new Regex("address [ \t\r\n]*\"(?<Address>[a-z0-9 #,]*)\"", RegexOptions.IgnoreCase);
for (int Index = 0; Index < MyList.Count; Index++)
{
l_mMatch = RegData.Match(MyList[Index]);
if (l_mMatch.Success)
strInfo = l_mMatch.Groups["Data"].Value;
l_mMatch = RegName.Match(MyList[Index]);
if (l_mMatch.Success)
strName = l_mMatch.Groups["Name"].Value;
l_mMatch = RegAddress.Match(MyList[Index]);
if (l_mMatch.Success)
strAddress = l_mMatch.Groups["Address"].Value;
}
}
メソッド:WriteFile
/// <summary>
/// To write parsed information into file.
/// </summary>
private void WriteFile()
{
XDocument XD = new XDocument(
new XElement(strInfo,
new XElement("Name",
new XAttribute("Value", strName)),
new XElement("Address",
new XAttribute("Value", strAddress))));
XD.Save(Application.StartupPath + "\\File.xml");
}
ParserGeneratorについて聞いたことがあります
lexとyaccを使用してパーサーを作成するのを手伝ってください。この理由は、私の既存のパーサー(Pattern Matching
)は柔軟性がなく、それ以上に正しい方法ではないからです(私はそう思います)。
使用方法(コードプロジェクトサンプル1とコードプロジェクトサンプル2ParserGenerator
を読みまし たが、まだこれに精通していません)。C#パーサーを出力するパーサージェネレーターを教えてください。