Aarav
Aarav

Reputation: 59

Write string with quotes in c:out vaue?

I want to write a string with quotes in a jsp page which is using jstl tag c:out for its value that means I want to write: c:out value = '"4"' Please suggest asap..

Upvotes: 1

Views: 1449

Answers (2)

Amit Kumar user3037405
Amit Kumar user3037405

Reputation: 390

Try this.

<c:out value='\\"4\\"'/>

Upvotes: 1

LHA
LHA

Reputation: 9655

Did you try to use escapeXml attribute?

<c:out value='"4"' escapeXml="false"></c:out>

Upvotes: 4

Related Questions