×
The internal search function is temporarily non-functional. The current search engine is no longer viable and we are researching alternatives.
As a stop gap measure, we are using Google's custom search engine service.
If you know of an easy to use, open source, search engine ... please contact support@midrange.com.
Hi Peter,
Peter Connell wrote:
sed 's/\&[^amp]/\&/g' test1.xml
I agree with what Adam said. This code says "translate anything
starting with & to &, except &a, &m or &p, which should be left alone".
So what will you do if someone passes another character entity besides
&? Suppose they send you < for example, you'll wind up with
&lt; which is wrong. You don't really want to translate & only when
it's not & (which is what you seem to think). What you really want
to do is translate & when it's not part of a character entity -- which
is extremely hard to do!
Well-formed XML escapes the & character for a good reason. Whomever is
coding XML with unescaped & characters needs to be stopped. No XML
reader should accept XML that's not well-formed.
As an Amazon Associate we earn from qualifying purchases.
This mailing list archive is Copyright 1997-2024 by midrange.com and David Gibbs as a compilation work. Use of the archive is restricted to research of a business or technical nature. Any other uses are prohibited. Full details are available on our policy page. If you have questions about this, please contact
[javascript protected email address].
Operating expenses for this site are earned using the Amazon Associate program and Google Adsense.