0
votes
4answers
40 views
Encode HTML entities but ignore HTML tags - in PHP
I have a string that might look like this
$str = "<p>Me & Mrs Jones <br /> live in <strong style="color:#FFF;">España</strong></p>";
…
0
votes
2answers
37 views
Convert special chars to HTML entities, without changing tags and parameters.
I'm using FreeTextBox editor to get some HTML created by users.
The problem with this is this editor is not converting special chars in HTML entities at exception of "<>". I cannot use theHTML = …
0
votes
5answers
127 views
How To HTML Escape Curly Quotes in a Java String
I've got a string that has curly quotes in it. I'd like to replace those with HTML entities to make sure they don't confuse other downstream systems. For my first attempt, I just added matching for …
2
votes
2answers
171 views
Decode Numeric HTML Entities in ColdFusion?
I need a way to transform numeric HTML entities into their plain-text character equivalent. For example, I would like to turn the entity:
é
into the character:
é
Through some googling …
0
votes
2answers
54 views
Best way to find illegal characters in a bunch of ISO-889-1 web pages?
I have a bunch of html files in a site that were created in the year 2000 and have been maintained to this day. We've recently began an effort to replace illegal characters with their html entities. …
2
votes
2answers
75 views
What encoding is this… and how do you escape it in php?
Im working on an imdb data scraper for a site, and I they seem to encode everything in a weird encoding I never saw before.
<a href="/keyword/exploding-ship/">Exploding Ship</a>
…
0
votes
4answers
342 views
Replacing from javascript dom text node
I am processing xhtml using javascript. I am getting the text content for a div node by concatenating the nodeValue of all child nodes where nodeType == Node.TEXT_NODE.
The resulting string sometimes …
1
vote
1answer
199 views
HTML Entities with jQuery
I would like to use replace the value of a submit button with "Loading& hellip;" (without spaces).
The problem is that when I click the button I still see "& hellip;" instead of three dots.
…
4
votes
3answers
265 views
htmlentities in PHP but preserving html tags
Hi there,
I want to convert all texts in a string into html entities but preserving the HTML tags, for example this:
<p><font style="color:#FF0000">Camión español</font></p>
…
1
vote
2answers
566 views
Replace html entities with the corresponding utf-8 characters in Python 2.6
I have a html text like this:
<xml ... >
and I want to convert it to something readable:
<xml ...>
Any easy (and fast) way to do it in Python?
0
votes
2answers
85 views
Why does this strange character encoding happen?
This HTML source code:
<td class="result">'DIVISÃO DE EDUCAÇÃO
PR?ESCOLAR E ENSINO PRIMÁRIOO'</td>
displays as:
'DIVISÃO DE EDUCAÇÃO …
0
votes
3answers
109 views
Code in a RSS feed
I am using a feed creator (specifically, Kohana's feed::create()), except some of my text might be like this in the description element
See code below
<?php echo 'example'; ?>
The …
19
votes
9answers
757 views
When Should One Use HTML Entities
This has been confusing me for some time. With the advent of utf-8 as the de-facto standard in web development I'm not sure in which situations I'm supposed to use the html entities and for which ones …
1
vote
2answers
493 views
Converting & to & in Objective-C
Hi All,
I have a URL string in the following format.
…
1
vote
4answers
2k views
Convert characters to HTML Entities in Cocoa
I am currently trying to put together an URL where I specify some GET parameters. But I want to use japanese or other characters too in this URL.
Is there a way to convert a NSString to a string …
