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
  • 663
  • 1
  • 10
  • 22

1 Answers1

2

XML does not use backslashes.

Instead, it uses entities: &quot;

SLaks
  • 868,454
  • 176
  • 1,908
  • 1,964