我使用PDFSharp。 我需要帮助。 我需要请检查是否文档包含单词“ABC”。 例:
11abcee = true
444abcggw = true
778ab = false
我写了这个代码,但预期它不工作:
PdfDocument document = PdfReader.Open("c:\\abc.pdf");
PdfDictionary dictionary = new PdfDictionary(document);
string a = dictionary.Elements.GetString("MTZ");
if (a.Equals("MTZ"))
{
MessageBox.Show("OK", "");
}
else
{
MessageBox.Show("NO", "");
}
我缺少的东西吗?