2
<entry key="<div class="private">([\n](.)*)*</div>"> </entry>

I need to parse this with rapidxml, and I cannot seem to escape those inner quotes with a backslash. How can I make this valid?

Innkeeper
  • 623
  • 1
  • 9
  • 21

1 Answers1

2

XML does not use backslashes.

Instead, it uses entities: &quot;

SLaks
  • 800,742
  • 167
  • 1,811
  • 1,896