vote up 1 vote down star
1

Hi,

I have a user form. If the user types in a string with ' or " as part of it I have no problem. The form is submitted and saved correctly to the DB. My problem is when I reload the page (all entries can be modified and are loaded into a list in the jsp before being displayed). On loading the page I get an error saying:

missing ) after argument list 'Caroline's message', \n

Any ideas what I need to do to escape this string for displaying it on the frontend.

Here is the code I am using on th frontend to read in the data and store it in a javascript object. Not fully sure where I need to escape. The field causing the problem is c.getComName:

communications[<%=i%>][1] = new CommObject('<%=c.getComId()%>', '<%=c.getComName()%>');

UPDATED WITH HTML GENERATED:

communications[0][1] = new CommObject('101', 'Caroline's Message');

Thanks in advance

flag

43% accept rate
What do you mean by messed up? In what way are those characters messed up? – Gumbo Sep 24 at 10:08
Sorry, further investigation revealed that my problem is not in submitting the form but on retrieving the data again after submission, see updated question – Caroline Sep 24 at 10:17
Can you show the generated HTML? – David Rabinowitz Sep 24 at 12:01
HTML added, I removed the second part of the question regarding jquery, after looking at the HTML this is the only place that has the ' in it so this is where I need it to be escaped. – Caroline Sep 24 at 15:30

3 Answers

vote up 0 vote down check

Use the Apache StringEscapeUtils.escapeJavaScript function.

Escapes the characters in a String using JavaScript String rules.

Escapes any values it finds into their JavaScript String form.
Deals correctly with quotes and control-chars (tab, backslash, cr, ff, etc.)

So a tab becomes the characters '\\' and 't'.
link|flag
Thanks Kevin, this works perfectly! – Caroline Sep 28 at 8:35
vote up 0 vote down

What happens if you use ( " ) instead of ( ' )

"...omId()%>", "<%=c.getComName()%>");

Might not be de definitive solution but it may work.

EDIT

That's strange.

What about:

'<%=c.getComName().replaceAll("\\'","\\\\'")%>'

If that works, you just have to figure out how to add the \"

link|flag
I'll try but I suspect it will then work for ' but not for " – Caroline Sep 24 at 15:40
it actually doesn't fix it which is a surprise to me! – Caroline Sep 24 at 15:50
:-o I guess you'll need to preprocess the name before delivering it back to the front end. :( – Oscar Reyes Sep 24 at 16:28
vote up 0 vote down

When you return the HTML from the CommObject class add in the \" instead of the ' and before the name (e.g. Caroline's message)

Like this: return "\"" + comName + "\"";

link|flag
I'll try this now, thanks – Caroline Sep 24 at 15:42
Still no joy, I get missing ) after argument list '"Caroline's message"', \n. Just to confirm I need to escape both ' and " – Caroline Sep 24 at 15:55
No, just escape the ", and leave out the single quote – amischiefr Sep 24 at 16:20

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.