2020年2月28日
摘要: 本文为CSDN博主「午夜支枕听河流」的原创文章,遵循 CC 4.0 BY-SA 版权协议,转载请附上原文出处链接及本声明。原文链接:https://blog.csdn.net/qq_24642743/article/details/72717003 文本解析有3种,分别为:XML解析,JSON解析和 阅读全文
posted @ 2020-02-28 21:56 ein_key 阅读(898) 评论(0) 推荐(0) 编辑
  2020年2月26日
摘要: http://www.datypic.com/sc/ooxml/e-m_oMath-1.html Element information Namespace: http://schemas.openxmlformats.org/officeDocument/2006/math Schema docu 阅读全文
posted @ 2020-02-26 00:43 ein_key 阅读(503) 评论(0) 推荐(0) 编辑
摘要: https://docs.microsoft.com/en-us/dotnet/api/documentformat.openxml.openxmlelement?view=openxml-2.8.1 Represents a base class that all elements in an O 阅读全文
posted @ 2020-02-26 00:14 ein_key 阅读(302) 评论(0) 推荐(0) 编辑
  2020年2月25日
摘要: https://www.xuebuyuan.com/101905.html 在Code Project中闲逛时,让我发现了这样一篇文章Create simple Word 2007 documents without needing Word 2007 installed,里面就有提到Office 阅读全文
posted @ 2020-02-25 22:24 ein_key 阅读(710) 评论(0) 推荐(0) 编辑
摘要: https://stackoverflow.com/questions/16069435/c-sharp-duplicate-docx-file-using-openxml I'm trying to duplicate the docx file contents and save them wi 阅读全文
posted @ 2020-02-25 22:22 ein_key 阅读(392) 评论(0) 推荐(0) 编辑
摘要: https://docs.microsoft.com/zh-cn/dotnet/api/documentformat.openxml.packaging.wordprocessingdocument?view=openxml-2.8.1 命名空间:DocumentFormat.OpenXml.Pac 阅读全文
posted @ 2020-02-25 21:32 ein_key 阅读(906) 评论(0) 推荐(0) 编辑
摘要: https://docs.microsoft.com/zh-cn/dotnet/api/system.xml.xmldocument?view=netframework-4.8 您可以使用属性来浏览 XML 文档。 但在使用其中任何一个之前,让我们快速回顾几个术语。 文档由节点组成。 每个节点在其上 阅读全文
posted @ 2020-02-25 21:31 ein_key 阅读(194) 评论(0) 推荐(0) 编辑
  2020年2月16日
摘要: https://blog.csdn.net/m0_37052320/article/details/79556747 最根本的参考当然还是官方的文档,相当不错的中文讲解。有人已经做了如何修改一些格式的博客:用python-docx修改已存在的Word文档的表格的字体格式。我这里给出替换内容给的例子, 阅读全文
posted @ 2020-02-16 20:53 ein_key 阅读(7893) 评论(0) 推荐(0) 编辑
摘要: https://blog.csdn.net/HUSTER_LC/article/details/79367286 1、遇到问题 工作中遇到一个问题,需要从dcox文档中抽取特定的段落;通过对目标对象的调查,发现目标段落的公共特性:具有同样的段落样式,并且有共同的开头Sysname; 同时存在另外一个 阅读全文
posted @ 2020-02-16 20:44 ein_key 阅读(1594) 评论(0) 推荐(0) 编辑
摘要: 原文地址: http://blog.csdn.net/djskl/article/details/44357389 这四个方法是从某个字符串中寻找特定子串或判断某个字符串是否符合某个模式的常用方法。 1、match re.match(pattern, string[, flags]) 从首字母开始开 阅读全文
posted @ 2020-02-16 20:14 ein_key 阅读(742) 评论(0) 推荐(0) 编辑