Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
在.NET中你有
XmlConvert.VerifyNCName
XmlConvert.IsNCNameChar
等来验证NCName
如何在 C++ 中做同样的事情?
您可以尝试使用 Apache 的Xerces-C++库,更具体地说是XMLChar1_1::isValidNCName方法。
如果您使用的是 Visual Studio,您还可以使用 C++/CLI,这将允许您将非托管 C++ 与托管 C++ 混合使用,您将能够在其中使用 .NET 函数。