Tagged Questions
Escaping characters are usually characters that are used to signify an alternative interpretation of subsequent characters in a character sequence.
82
votes
2answers
82k views
Where can I get a list of the XML document escape characters?
Where can I get a list of the XML document escape characters?
54
votes
14answers
39k views
Pass a PHP string to a Javascript variable (including escaping newlines)
What is the easiest way to encode a PHP string for output to a Javascript variable?
I have a PHP string which includes quotes and newlines. I need the contents of this string to be put into a ...
45
votes
3answers
24k views
How to escape text for regular expression in Java
Does Java have a built-in way to escape arbitrary text so that it can be included in a regular expression? For example, if my users enter "$5", I'd like to match that exactly rather than a "5" after ...
44
votes
7answers
11k views
Can I convert a C# string value to an escaped string literal
In C#, can I convert a string value to a string literal, the way I would see it in code? I would like to replace tabs, newlines, etc. with their escape sequences.
If this code:
...
32
votes
6answers
10k views
Colorize logs in eclipse console
Is there a way to colorize parts of logs in the eclipse console. I know I could send to error and standard streams and color them differently but I'm more looking someting in the lines of ANSI escape ...
30
votes
6answers
4k views
How to escape @ characters in Subversion managed file names?
For many Subversion operations, appending the '@' symbol to the end of a file or URL argument allows you to target a specific revision of that file. For example, "svn info test.txt@1234" will give ...
30
votes
4answers
40k views
How do I escape double quotes in attributes in an XML String in T-SQL?
Pretty simple question - I have an attribute that I would like to have double quotes in. How do I escape them? I've tried
\"
""
\\"
And I've made the @xml variable both xml type and varchar(max) ...
29
votes
1answer
6k views
Is there a PHP function that can escape regex patterns before they are applied?
Is there a PHP function that can escape regex patterns before they are applied?
I am looking along the lines of the C# Regex.Escape function.
25
votes
5answers
17k views
How to escape strings in MSSQL using PHP?
I'm looking for the alternative of mysql_real_escape_string() for MSSQL. Is addslashes() my best option or there is another alternative function that can be used?
Edit: Alternative for mysql_error() ...
25
votes
12answers
54k views
How do I escape a string inside javascript inside an onClick handler?
Maybe I'm just thinking about this too hard, but I'm having a problem figuring out what escaping to use on a string in some javascript inside a link's onClick handler. Example:
<a href="#" ...
24
votes
10answers
29k views
Objective C HTML escape/unescape
Wondering if there is an easy way to do a simple HTML escape/unescape in Objective C. What I want is something like this psuedo code:
NSString *string = ...
24
votes
4answers
19k views
Escape a string for sed search pattern
In my bash script I have an external (received from user) string, which I should use in sed pattern.
REPLACE="<funny characters here>"
sed "s/KEYWORD/$REPLACE/g"
How can I escape the $REPLACE ...
23
votes
8answers
24k 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 ...
22
votes
5answers
10k views
Is there a way to escape a CDATA end token in xml?
I was wondering if there is any way to escape a CDATA end token ( ]]> ) within a CDATA section in an xml document. Or, more generally, if there is some escape sequence for using within a CDATA (but if ...
21
votes
9answers
12k views
How to escape os.system() calls in Python?
When using os.system() it's often necessary to escape filenames and other arguments passed as parameters to commands. How can I do this? Preferably something that would work on multiple operating ...
20
votes
4answers
14k views
Recommended method for escaping HTML in Java
Is there a recommended way to escape <, >, " and & characters when outputting HTML in plain Java code? (Other than manually doing the following, that is).
String source = "The less than ...
14
votes
5answers
31k views
Oracle pl-sql escape character (for a '&')
While attempting to execute SQL insert statements using Oracle SQL Developer I keep generating a "Enter substitution value" prompt:
Insert into AGREGADORES_AGREGADORES (IDAGREGADOR,NOMBRE,URL) values ...
14
votes
3answers
9k views
decodeURIComponent vs unescape, what is wrong with unescape?
In answering another question I became aware that my Javascript/DOM knowledge had become a bit out of date in that I am still using escape/unescape to encode the contents of URL components whereas it ...
13
votes
4answers
165 views
Escaping user input from database necessary?
So I know about MySQL injection and always escape all my user input before putting it in my database. However I was wondering, imagine a user tries to submit a query to inject, and I escape it. What ...
13
votes
3answers
277 views
Python raw strings and trailing backslash
I ran across something once upon a time and wondered if it was a Python "bug" or at least a misfeature. I'm curious if anyone knows of any justifications for this behavior. I thought of it just now ...
13
votes
4answers
10k views
Backslash problem with String.replaceAll
I'm trying to convert "\something\" into "\\something\\" using replaceAll, but I keep getting all kinds of errors. I thought this was the solution:
theString.replaceAll("\\", "\\\\");
But this ...
13
votes
6answers
1k views
Why doesn't C terminate strings with a special escaped string-termination character?
In C, strings are terminated with null ( \0 ) which causes problems when you want to put a null in a strings. Why not have a special escaped character such as \$ or something?
I am fully aware at how ...
13
votes
1answer
15k views
How can I escape special HTML characters in JSP?
Before I go and create a custom tag or Java method to do it, what is the standard way to escape HTML characters in JSP?
I have a String object and I want to display it in the HTML so that it appears ...
12
votes
4answers
7k views
Escape text for HTML
How do i escape text for html use in C#? I want to do
sample="<span>blah<span>"
and have
<span>blah<span>
show up as plain text instead of blah only with the tags part ...
12
votes
7answers
7k views
Escape Quote in C# for javascript consumption
I have a ASP.Net web handler that returns results of a query in JSON format
public static String dt2JSON(DataTable dt)
{
String s = "{\"rows\":[";
if (dt.Rows.Count > 0)
{
...
11
votes
3answers
2k views
Escaping html in Java
How do I make sure I don't escape something twice?
I've heard that its good practice to escape values as you receive them from a form, and also escape when you output. That way you have two chances ...
11
votes
5answers
6k views
Why is PDO better for escaping MySQL queries/querystrings than mysql_real_escape_string?
I've been told that I'd be better using PDO for MySQL escaping, rather than mysql_real_escape_string.
Maybe I'm having a brain-dead day (or it may be the fact I'm by no stretch of the imagination a ...
11
votes
5answers
4k views
How to encode UTF8 filename for HTTP headers? (Python, Django)
I have problem with HTTP headers, they're encoded in ASCII and I want to provided a view for downloading files that names can be non ASCII.
response['Content-Disposition'] = 'attachment; ...
11
votes
3answers
10k views
How to escape JSON string?
Are there any classes/functions available to be used for easy JSON escaping? Id rather not have to write my own.
11
votes
5answers
5k views
string escape into XML
Any C# function which could be used to escape and un-escape a string, which could be used to fill in the content of an XML element?
I am using VSTS 2008 + C# + .Net 3.0.
EDIT 1: I am concatenating ...
11
votes
3answers
4k views
C# Command-Line Parsing of Quoted Paths and Avoiding Escape Characters
How is it possible to parse command-line arguments that are to be interpreted as paths? args[] contains strings that are automatically joined if they are quoted, e.g.:
example.exe one two "three ...
10
votes
2answers
1k views
Java: how to get a File from an escaped URL?
I'm receiving an URL that locates a local file (the fact that I receive an URL is not in my control). The URL is escaped validly as defined in RFC2396. How can I transform this to a Java File ...
10
votes
7answers
14k views
Javascript escape quotes
This is so stupid, but I can NOT figure this one out. I'm outputting values from a database (it isn't really open to public entry, but it is open to entry by a user at the company -- meaning, I'm not ...
10
votes
2answers
1k views
How do I escape a string for a shell command in nodejs (V8 Javascript engine)?
In nodejs, the only way to execute external commands is via sys.exec(cmd). I'd like to call an external command and give it data via stdin. In nodejs there does yet not appear to be a way to open a ...
10
votes
1answer
2k views
Properly handling spaces and quotes in bash completion
What is the correct/best way of handling spaces and quotes in bash completion?
Here’s a simple example. I have a command called words (e.g., a dictionary lookup program) that takes various words as ...
10
votes
2answers
2k views
How to get Uri.EscapeDataString to comply with RFC 3986
The Uri class defaults to RFC 2396. For OpenID and OAuth, I need Uri escaping consistent with RFC 3986.
From the System.Uri class documentation:
By default, any reserved characters in the URI ...
10
votes
3answers
9k views
JQuery selector value escaping
I have a dropdown list that contains a series of options:
<select id=SomeDropdown>
<option value="a'b]<p>">a'b]<p></option>
<option ...
10
votes
6answers
11k views
How can i parse a comma delimited string into a list (caveat)?
I need to be able to take a string like:
'''foo, bar, "one, two", three four'''
into:
['foo', 'bar', 'one, two', 'three four']
I have an feeling (with hints from #python) that the solution is ...
9
votes
1answer
74 views
How to escape or terminate an escape sequence in C
I have sequences of characters I'm feeding to a decoding function:
For example:
"\x05three"
(Yes, that's a Pascal-style string. The function translates length-prefixed strings to null-terminated ...
9
votes
2answers
3k views
Java escape HTML
currently I use org.apache.commons.lang.StringEscapeUtils escapeHtml() to escape unwanted HTML tags in my Strings but then I realized it escapes characters with accents to &something;, too, which ...
9
votes
2answers
549 views
Python pickle - how does it break?
Everyone knows pickle is not a secure way to store user data. It even says so on the box.
I'm looking for examples of strings or data structures that break pickle parsing in the current supported ...
9
votes
4answers
259 views
Is > ever necessary?
I now develop websites and XML interfaces since 7 years, and never, ever came in a situation, where it was really necessary to use the > for a >. All disambiguition could so far be handled ...
9
votes
1answer
5k views
T-SQL escape quote character
NOTE: It's probably a duplicate but I can't find working answer.
Following is what i'm trying todo, notice a ' in the value. How do I fix this?
INSERT INTO [pugraider].[dbo].[Realms]([Name]) ...
9
votes
3answers
7k views
How do I escape a Unicode character in my source code?
I feel incredibly stupid for asking this, but the documentation and Google are giving me no love at all.
I have a Unicode character I want to insert into a string literal in the source code of my ...
9
votes
2answers
3k views
Escape analysis in Java
As far as I know the JVM uses escape analysis for some performance optimisations like lock coarsening and lock elision.
I'm interested if there is a possibility for the JVM to decide that any ...
9
votes
2answers
2k views
Is there a better HTML escaping and unescaping tool than CGI for Ruby?
CGI.escapeHTML is pretty bad, but CGI.unescapeHTML is completely borked. For example:
require 'cgi'
CGI.unescapeHTML('…')
# => "…" # correct - an ellipsis
...
9
votes
5answers
7k views
How do I escape the wildcard/asterisk character in bash?
eg.
me$ FOO="BAR * BAR"
me$ echo $FOO
BAR file1 file2 file3 file4 BAR
and using the "\" escape character:
me$ FOO="BAR \* BAR"
me$ echo $FOO
BAR \* BAR
I'm obviously doing something stupid.
How ...
8
votes
1answer
837 views
Guide to proper escaping in Play framework
I'm trying to map out how the Play framework supports escaping.
This is a nice page spelling out the needed functionality:
...
8
votes
7answers
443 views
mysql_real_escape_string and ’
I'm using mysql_real_escape_string to escape a string before inserting it into my mysql database.
Everything's working fine, except that the character ’ is getting missed and turned into ’ by ...
8
votes
4answers
3k views
How to escape double quotes in title attribute
I am trying to use a string that contains double quotes in the title attribute of an anchor. So far I tried these:
<a href=".." title="Some \"text\"">Some text</a>
<!-- title looks ...