12
votes
6answers
558 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 …
6
votes
2answers
279 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 …
6
votes
12answers
5k 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 …
5
votes
4answers
343 views
How to encode UTF8 filename for HTTP headers? (Python, Django)
Hi,
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; …
5
votes
2answers
385 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
…
5
votes
3answers
3k 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 …
4
votes
3answers
199 views
Exact string match in vim? (Like ‘regex-off’ mode in less.)
In vim, I often want to search on a string with finicky characters which need escaping. Is there a way I can turn off the meaning of all special characters, kind of like regex-off mode in less, or …
4
votes
4answers
88 views
Ultimate Website Testing String
Hi all. I've been grappling with the fraught area of escaping user (text) input for web pages. The ultimate goal is to have user input displayed and stored exactly as typed in, without breaking …
4
votes
3answers
315 views
Escaping single quote in String.Format()
I have been all over the 'tubes and I can't figure this one out. Might be simple.
The following String.Format call:
return dt.ToString("MMM d yy 'at' H:mmm");
Correctly returns this:
Sep 23 08 …
4
votes
1answer
349 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 …
4
votes
5answers
263 views
String inside of a string Ex: pie = “He said “hi”” - C#
In Visual Studio with C#, how can I declare a string inside of a string like this? I saw a few Stack Overflow pages like "Java string inside string to string", but didn't think any of them were the …
4
votes
2answers
255 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 …
4
votes
3answers
2k 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() …
4
votes
6answers
328 views
Extra backslashes being added in PHP
My crappy web host did some upgrades the other day and some settings have gone awry, because looking at our company's wiki (MediaWiki), every quote is being escaped with a backslashes. It's not even …
4
votes
11answers
1k views
How to insert a string which contains an “&”
How can I write an insert statement which includes the & character? For example, if I wanted to insert "J&J Construction" into a column in the database.
I'm not sure if it makes a …
