简体   繁体   中英

How to validate Validate NCName in C++

In .NET you have

XmlConvert.VerifyNCName

XmlConvert.IsNCNameChar

etc to validate a NCName

How can one do the equivalent in C++ ?

You can try using the Xerces-C++ library from Apache, more specifically the XMLChar1_1::isValidNCName method.

If you're using Visual Studio, you can also use C++/CLI, which will allow you to mix unmanaged C++ with managed C++, in which you'll be able to use the .NET functions.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM