0
votes
3answers
88 views
Python, removing the \’s before getting them processed
Hello, I'm making a program that asks for a path, and Windows' paths contain backslashes, which can be interpreted as an escape sequence by python if the letter right next is the w …
1
vote
3answers
60 views
Why bother using mysql_real_escape_string() since $_POST addes slashes before a quote automatically?
In PHP, $_POST add slashes before a quotation mark automatically, so why bother applying mysql_real_escape_string()? For example, when I input 'rrr in an input field, and I get \'r …
1
vote
1answer
54 views
Safely escape strings for SQL fragments for joins, limits, selects, and so on (not conditions) on Rails
In Ruby on Rails, for conditions, it's easy to make SQL-injection-proof queries:
:conditions => ["title = ?", title]
where title comes from the outside, from a web form or so …
3
votes
4answers
186 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("\\", "\\\ …
0
votes
4answers
59 views
Do I need to escape these in javascript?
My strings will hold the values:
"["
"[/blah]"
do I need to escape anything?
Is it just doubling the /?
0
votes
4answers
114 views
URL and the ampersand
Using XSLT and XPath 1.0, I have a string I want to escape for use on a URL, for example:
<description>one word & another</description>
So, the text() of the …
0
votes
2answers
26 views
vim regexps from the perl’s point of view: which special characters to escape with backslash
Imagine, we have to construct a regexp in vi/vim. Which special characters we have to escape with backslash?
By special characters I mean the following chars: {}|()-[]+*.^$?
See …
0
votes
4answers
184 views
How to replace escape characters in Regular expression?
Hello everyone,
Once again I have hit the wall.
How to replace escape characters using regular expressions?
If tab character (\t) occures more than twice, I want to replace those …
0
votes
5answers
64 views
RegEx for String.Format
Hiho everyone! :)
I have an application, in which the user can insert a string into a textbox, which will be used for a String.Format output later. So the user's input must have a …
1
vote
3answers
78 views
latex escape chars
Hi,
I want to prepare a text for the use in a latex document. I wrote a SQL Function which does a lot of REPLACE. For example "_" -> "_" and so on.
But there are so many special …
1
vote
4answers
301 views
jQuery, escape characters when selecting by href
Hi,
I'm trying to select an element based on its href within a table of records. I have two links for each record:
'reorder=+' and 'reorder=-'
If I use
a[href*=reorder]
bot …
0
votes
3answers
84 views
Escape XML special chars in AJAX
I have an XML document which contains some invalid characters (é for example). Unfortunalty I cannot change the source XML file, and the file must be read through AJAX. How can I e …
1
vote
3answers
142 views
How do I escape all special characters in Access Jet SQL?
I'm trying to change a password with a DDL statement like:
CurrentProject.Connection.Execute "ALTER USER barney PASSWORD "[]!@#$%^ oldpassword"
Yes, that's a nasty password, but …
0
votes
0answers
31 views
can’t escape fullscreen mode by escape key in vista i.e 8
when i try to escape full screen mode in flash by escape key it doesn't
close the fullscreen unless i press somewhere on the flash area.
this happens only in vista i.e 8 (this com …
2
votes
2answers
181 views
How do you escape a reserved word in Delphi?
I need to Escape a reserved word to use it as an identifier in Delphi. I thought that was accomplished by using the ampersand "&", but that doesn't seem to be working right. …
