devxlogo

Store XML in C++ Source Code

Store XML in C++ Source Code

XMLwhen it is in ASCIIcan be stored as any other literal in one line, but it’s not very readable. Use the following macros to store XML (or any other string for that matter) across multiple lines (no quotes necessary):

#define BEGIN_XML( data ) static char data[] = {#define XML( text )	  " "#text" "#define END_XML()	  };

Now you can store XML like this:

BEGIN_XML( myData )XML(          some text etc. here  )END_XML()
Access myData in your code as usual. If you prefer, combine the macros in just one:
#define XML_DATA( data, text )	static char data[] = {	" "#text" " };
See also  Why ChatGPT Is So Important Today
devxblackblue

About Our Editorial Process

At DevX, we’re dedicated to tech entrepreneurship. Our team closely follows industry shifts, new products, AI breakthroughs, technology trends, and funding announcements. Articles undergo thorough editing to ensure accuracy and clarity, reflecting DevX’s style and supporting entrepreneurs in the tech sphere.

See our full editorial policy.

About Our Journalist