1
vote
1answer
14 views
How do I prevent the Entity Framework from escaping my Regex?
Put simply... in plain SQL I would do this:
SELECT * FROM [Products] WHERE [Description] LIKE '%[0-9]%'
In Linq to Entities I do this:
Products.Where(p => p.Description.Contains("[0-9]"))
But …
0
votes
2answers
29 views
Why .NET XML API doesn’t protect me from null character?
My application receive strings from outside and construct an XML document
string fromOutside = "\0";
XAttribute a = new XAttribute(fromOutside);
when the attribute value contains null character …
1
vote
1answer
30 views
XSL transformation and special XML entities escaping
Hi,
I have an XML file which is transformed with XSL. Some elements have to be changed, some have to be left as is - specifically, text with entities ", &, ', <, …
2
votes
3answers
66 views
Unescape HTML entities in Javascript?
I have some Javascript code that communicates with an XML-RPC backend.
The XML-RPC returns strings of the form:
<img src='myimage.jpg'>
However, when I use the Javascript to insert the …
2
votes
3answers
63 views
What are all the HTML escaping contexts?
When outputting HTML, there are several different places where text can be interpreted as control characters rather than as text literals. For example, in "regular" text (that is, outside any element …
2
votes
2answers
65 views
What strategies are there for escaping character entities?
We are doing Natural Language Processing on a range of English language documents (mainly scientific) and run into problems in carrying non-ANSI characters through the various components. The …
0
votes
2answers
34 views
xml and html escaping special characters
i store my article in a xml file, so if i write into it special characters "' xml automatically escapes this characters and when i get(via PHP) the xml content i get something like \". so if i write …
1
vote
6answers
54 views
How do I escape the # character in a VB.NET string literal?
If I needed to escape a double quote character within a string literal I'd use two consecutive double quotes as follows:
Dim name = "Chuck ""Iceman"" Liddell"
However, it doesn't seem like …
0
votes
1answer
34 views
PHP Cannot escape my string properly
I'm using mysql_real_escape_string to escape my content but I am receiving an error in a SQL INSERTION QUERY for having a single-quote unescaped. How can I resolve this?
$content = …
2
votes
2answers
61 views
XSLT escaping characters for XML attributes
I am working in a framework (cocoon) which means that the pages after I produce them are re-transformed by processes I have little or no control of. What I am doing is making a web service call, then …
1
vote
2answers
93 views
How to detect an invalid C escaped string using a regular expression?
I would like to find a regular expression (regex) that does detect if you have some invalid escapes in a C double quoted escaped string (where you can find double quotes only escaped).
I consider …
1
vote
2answers
43 views
How to escape single quotes in Flash?
I have a user supplied text and I need to prepend all backslashes and single quotes with a backslash. How to do that?
3
votes
7answers
235 views
Java - escape string to prevent SQL injection
I'm trying to put some anti sql injection in place in java and am finding it very difficult to work with the the "replaceAll" string function. Ultimately I need a function that will convert any …
0
votes
2answers
41 views
Adding non-escaped Ampersands to HTML with Nokogiri::XML::Builder
I would like to add things like bullet points "•" and such to html using the XML Builder in Nokogiri, but everything is being escaped. How do I prevent it from being escaped?
I would like the …
2
votes
5answers
76 views
Escaping user data, without magic quotes
Hey,
I'm taking a look at how to properly escape data that comes from the outside world before it gets used either for application control, storage, logic.. that kind of thing.
Obviously, with the …
