I am using Google Translate to translate the contents of a textarea and fill another textarea with the API response.
In my source textarea I am replacing the /n newlines with <br /> line breaks to send the query like this:
var query = $('#textarea-src').val();
var query = encodeURIComponent(query);
var query = query.replace(/\n\r?/g, '<br />'); // replace new lines with line breaks
Then I make the call to Google:
$.ajax({
url: apiUrl,
dataType: 'jsonp',
success: function(data) {
var response = data.data.translations[0].translatedText;
var response = response.replace(/ <br \/> ?/g, '\n'); // replace line breaks with new lines
$('#textarea-trg').val(response);
}
});
The problem is that Google's responses have whitespace around the line breaks.
When I query "hello<br />world" the response in French is "bonjour \u003cbr /\u003e monde"
With my replace(/ <br \/> ?/g, '\n') regex I can correct for that but when I query two line breaks after each other "hello<br /><br />world" the response is "bonjour \u003cbr /\u003e\u003cbr /\u003e monde"
How can I correct for this?
<br/>s? – cheeken Sep 14 '11 at 5:12\ns. I am wondering with FFish wants to replace the\ns with<br/>s at all. If the problem is the GET request and invalid characters, that can be resolved with encoding. – cheeken Sep 14 '11 at 5:23$.ajaxis missing thedataparameter, so it may be wrongly encoded in the URL. – Kobi Sep 14 '11 at 5:32