Escaping is the process of applying an alternate meaning to a character or set of characters.

learn more… | top users | synonyms (9)

0
votes
2answers
31 views

Why aren't standard escape sequences like \a ,\v working?Why ' works without \,and is \? standard?

Why aren't \a (beep),\v(vertical tab) not working in my program even though they are standard according to the links below?And why is a single quotation mark working even without using it as \'? And ...
0
votes
1answer
36 views

Multiple levels of quotes in C# for javascript

I have "custom control" project that constructs a string of javascript to plug into another application. The application calls the "custom control" to determine certain behaviors. The problem I'm ...
1
vote
0answers
18 views

escape and replace part of an xml attribute in scala

I have an xml file in which I want to modify parts of several of the attributes. In scala, it is entirely possible to replace the entire attribute very easily. Replacing part of an attribute is ...
0
votes
2answers
13 views

Escaping Variable white space

I got a html table and I'm retrieving the value of a cell with: var orderid = document.getElementById("orderid"+row).innerText; The value of the cell is an orderid for example 10234. However when I ...
2
votes
3answers
30 views

Simple grep for anything year

I know I'm doing something boneheaded here, but a regex cheat sheet given to us in my Unix/Linux class implied (by my reading) that this should find lines in a text file that contain years (numbers ...
1
vote
1answer
24 views

grep fails in upstart script

I have an upstart configuration for a service which needs to check the existance of a process on it's startup. This sounds fairly easy but I'm already trying for 3 hours to get this thing solved and ...
3
votes
4answers
78 views

Best way to provide the user an escape string

Suppose I want to ask a user what format they want a certain output to be in and the output will include fill-in fields. So they provide something like this string: "Output text including some field ...
-1
votes
0answers
18 views

Escape string for DB insertion in C++

I cannot use percent encoding, so i must somehow escape special characters. My DB is an sqlite database, and i've already tried to use sqlite3_mprintf, but my application crashes even with the ...
2
votes
2answers
29 views

Is it necessary to use — and – in XHTML or HTML5?

It seems that it is best to use the & escape, instead of simply typing the ampersand (&). However, should we be using X/HTML character entity references for dashes and other common ...
0
votes
0answers
18 views

escaping sybase query with hexadecimal of single qoute

I am working with a Sybase database (not of my creating) and PHP, and I see that all single quotes in the database are stored as hexadecimal representation of single quote "\x16". I don't believe this ...
0
votes
0answers
27 views

Spring MVC doesn't handle Spring URL?

I use <spring:url> to create links this way: <spring:url value="groups/view/{gropName}" var="view_url"> <spring:param name="groupName" ...
0
votes
1answer
25 views

Sanitizing user input path names

Using Python 2.6 on Windows I have a function that needs to accept a path name as an arg. I'm running into issues when certain specific paths are passed. C:\users\bob\something.png #this is ...
0
votes
0answers
41 views

passing data with cURL post, escaping characters?

I have some post data as shown below, which I'm trying to send to a cURL function, which in turn sends the data to a POST form. But when I run the script, I get a syntax error. I believe that it's ...
0
votes
0answers
11 views

Convert Text Node Which Is XML Back to Valid XML

I'm attempting to convert the contents of an XML element that is itself XML back into valid XML. So taking the following example message: <parent> <name>Bob</name> ...
-3
votes
4answers
62 views

How to replace an escape char?

I'm trying to sanitize/standardize some user input for file directories. Windows does the \ and *nux/*nix do the /. In java \ must be escaped to \\ otherwise you get compile error. How can I read \ ...
1
vote
1answer
35 views

Delimiting double quotes for replacing XML characters

I am using a template Excel Export class which I found on CodeProject here and within the class there is a method for replacing certain characters to make them safe for Excel, however the following ...
0
votes
1answer
14 views

How to escape parentheses in jsp

I keep getting errors on this line of code: pstmt = conn.prepareStatement( "SELECT * FROM products WHERE category IN" + "(" + "SELECT catid FROM category WHERE ...
-1
votes
2answers
29 views

VBS - Ignoring the \ special character properties

I'm struggling to call a command line correctly in VBS due to the \ escape character. The string output I'm looking to write to the command line is, batch_name=\"myBatch\" Which gets passed to a ...
0
votes
3answers
58 views

How to properly sanitize URL as a link in PHP?

I have a site where users can share a link to their homepage such as http://example.com/user. Currently, I am using the PHP function filter_var($_POST['url'], FILTER_VALIDATE_URL) to validate the URL ...
0
votes
2answers
27 views

how to escape the space in Environment.SpecialFolder.ProgramFiles C#

i am trying to escape sequence the C:\Program Files space. Originally i escaped it within a string System.Diagnostics.Process.Start("XCOPY.EXE", "/E /I /Y \"" + ProgramFiles + "\\WinCon2\\*.*\" \"" ...
0
votes
2answers
47 views

How to automatically escape strings in a PHP SQL query?

Here's how I currently do it: $db->query(sprintf('INSERT INTO pages (title, content) VALUES ("%s", "%s")', $db->esc($title), $db->esc($content))); As you can see I'm manually escaping each ...
2
votes
4answers
54 views

String.replace “\\” with “/”

There seem to be a lot of questions around this but none of the ones I found seemed to work for me. My code: string subFolderName = category = "Parent/Sub\\Sub sub"; string category = ...
0
votes
0answers
75 views

How to convert escaped http request data to a normal string

I am using .net 3.5 to write a simple REST web service. This will use JSON to pass data to and from it. I have a simple test HTML page I am using to send POST data to the service. When I receive the ...
0
votes
1answer
38 views

How to call a script from webpage served by apache

I am trying to create a webpage form that when submitted, it would call a filebot script (or any program in Unix with a large list of parameters". When I run this command from the Unix prompt, it ...
0
votes
2answers
37 views

Escaping a variable (containing an array)

I want to have a hash my_statement as below: my_statement = %|{:foo=>\#{bar_array}}| where :foo is the key and the value is to be substituted with the value of bar_array later. After I later ...
0
votes
1answer
27 views

tomcat doesn't manage character encoding properly

I have written a project with spring mvc & spring security, & in fact I want to make my client to search inside my database but unfortunately I encounter to encoding problem & I can't ...
0
votes
1answer
40 views

JavaScript alert with escaped characters fail

Why does the following JavaScript fail, when you click on the link? And is there any way to fix it? <a onclick="alert('Do you want to delete &lt; &gt; &quot; ...
0
votes
2answers
32 views

How to put double quote inside double quote

I have onclick event. And I want to put double quote inside it. for example: <a onclick="document.getElementById('my_div').innerHTML='<a href="omer.php">link_2</a>'"> link ...
1
vote
2answers
39 views

Passing parts of commands around in bash robustly

I want to pass parts of commands around in bash so that: commandpart=( --flags "filename" >/dev/null ) command "${commandpart[@]}" Will evaluate to: command --flags "filename" >/dev/null ...
-1
votes
2answers
41 views

Trouble with mySQL query. Need * instead of ' * '

I have the following code that doesn't work. It doesn't work because it will do a query WHERE column = ' * ', instead of WHERE column = * I tried to think of a way to get it so it will do WHERE ...
-3
votes
0answers
86 views

Esc key not working in Putty

I just installed Windows 8 (let's hear the groans) on my work computer. PuTTY had been working great up until then, but now the Esc key won't work. I found that I can still escape using Shift+Esc ...
0
votes
1answer
29 views

How to generate PS1 in a function (escaping issues)

I'd like to move my bash prompt's construction into a function that can build it up modularly. The problem is that I cannot figure out how to get the function's result to be interpreted. Example: ...
0
votes
1answer
19 views

Preventing minidom from escaping already escaped text

import xml.dom.minidom text='2 &gt; 1' impl = xml.dom.minidom.getDOMImplementation() doc = impl.createDocument(None, "foobar", None) docElem = doc.documentElement text = doc.createTextNode(text) ...
0
votes
3answers
40 views

Are escape characters in Java platform-dependent?

I just read this question about comparing "%n" and "\n" What's up with Java's "%n" in printf? The answer confirms that %n can be used across platform, while \n is not. So I wonder ...
0
votes
1answer
31 views

Accessing strange directory in linux shell

I have found a directory while connecting to a linux ssh shell and i putty the name is ??? (I assume it to be so because of escape characters used for the name). When I use the command ls -b I get ...
-1
votes
0answers
39 views

& Character Breaking My XSLT Transform

I have source <?xml version="1.0"?> <results> <result> <Name> Live @ Wembly </Name> <title> Mickey Mouse in Concert ...
0
votes
2answers
36 views

jQuery Selector for ID containing colons

I'm trying to select an element using jQuery 2.0 with an ID that contains two colons as follows: <div id="container:divobj:1">My Div</div> I am using a double back-slash to escape the ...
0
votes
1answer
30 views

String escaping in JavaScript [closed]

I have a string like this var str = 'C:\fake\p\ath\some.jpg'; I tried many variants using str.replace, like this: var str = "C:\fake\p\ath\some.jpg"; str = str.replace(/\\/g, "\\"); alert(str); ...
1
vote
1answer
45 views

Node.js: escaping spaces when executing a unix command

Im using this command to compress files in node.js: var command = '7z a ' + dest + ' ' + orig; exec( command, function(err, stdout, stderr) { ...}); The problem comes when a file has spaces like 7z ...
0
votes
0answers
12 views

What is the four-character sequence “\{@}”?

For some time now, FOLDOC's most frequently requested missing term has been the four-character sequence \{@}. Why are people searching for it? Is from programming? Formatting? An emoticon? It ...
0
votes
0answers
53 views

Am I using &lt; and &gt; correctly?

I have created a quiz on XMl. When I choose the correct answer for a question containing an "&lt;" or a "&gt;" it will not match, on validation, to the correct answer. My validation works ...
1
vote
1answer
68 views

C# TextFieldParser vs \n

I'm trying to read a CSV file that has some \n in the text fields. When I use what I've read in a DrawString the \n appears in the text, instead of a line break. Looking at the string in the ...
1
vote
1answer
71 views

How to escape characters in Handlebars

I have "name" variable in the view and I want to display something like this in the rendered HTML: ${Jon} Right now, my code is like this: <li> {{name}} </li> I am storing name in ...
1
vote
1answer
30 views

How to escape {} in find -exec command

I'm trying to list the max line length for files in the current directory, but after googling through a ton of find exec escape answers I wasn't able to locate anything about how to escape brackets ...
0
votes
1answer
32 views

Escaping backslashes where they appear in a file when they don't always appear non-escaped

I've got a peculiar situation, I'm trying to import a CSV file into Weka and I've run into problems with Weka's apparently extremely poor ability to handle strings in a sanitary manner. I'm already ...
2
votes
2answers
53 views

Java Properties: how to escape # (hash)

How do I escape the hash sign (#) in Java properties files. We have an internationalization framework that uses Java properties files. There is a column called number and we want its header to be #. ...
0
votes
2answers
26 views

Jquery - tag attribute with escaped html gets unescaped automatically

I have this div with a data attribute that may contain escaped html value <div id="test" data-title="&lt;script&gt;alert(&quot;Hello&quot;);&lt;/script&gt;"></div> ...
0
votes
2answers
26 views

HTML Characters in MySQL PHP

In my database i have the following information one for each row. s=evil+dead&Search.x=0&Search.y=0 s=algoritmos&Search.x=20&Search.y=19 ...
2
votes
2answers
61 views

Passing double quotation marks to a command from Python using the subprocess module

I have a command line program I'm using from within a Python script to take care of stamping a build number onto an executable. This is the command line program: ...
0
votes
1answer
65 views

Escape HTML in JSON with PlayFramework2

I am using PlayFramework2 and I can't find a way to properly handle HTML escaping. In the template system, HTML entities are filtered by default. But when I use REST requests with Backbone.js, my ...

1 2 3 4 5 60