Tagged Questions
5
votes
2answers
71 views
In Java, should I escape a single quotation mark (') in String (double quoted)?
In Java, \' denotes a single quotation mark (single quote) character, and \" denotes a double quotation mark (double quote) character.
So, String s = "I\'m a human."; works well.
However, String s = ...
2
votes
2answers
33 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
32 views
How to escape special characters in scp
I want to be able to escape any worst case scenario file path in scp. I can't find a way to escape a file with an exclamation point and a " character at the same time.
Back story:
I have a webpage ...
2
votes
5answers
111 views
Escape character “|” error (Linux command)
I'm trying to run a Linux command in Java.
This is the command:
"ffmpeg -i rtmp://192.168.1.112/garage/stream26g -f mpegts -acodec libmp3lame -ar 48000 -ab 64000 -s 480x320 -r 30 -vcodec libx264 ...
0
votes
2answers
160 views
How are \r \t and \n different from one another? [duplicate]
In the code below, I don't know how these characters are different functionally from one another: \r \t \n. Does anyone have an explanation or description for these?
Here is some sample code:
...
0
votes
3answers
114 views
How to remove escape char from string in bash using sed?
I need to remove escape character from the string in bash. I get a data structure, which contains url paths with / escaped so I receive the regular link:
http://stackoverflow.com/questions/ask
as ...
1
vote
1answer
89 views
Replace special character with an escape preceded special character when String, replaceAll fails
In my java code I want something like if a string input has got any of the special characters mentioned, that should get preceded by a \.
Special character set is{+, -, &&, ||, !, (, ), {, ...
1
vote
2answers
71 views
VisualStudio - How to escape this chars
I think i need to escape the special chars here:
Process.Start(userSelectedFilePath, "\u0007" & ThisDir.Path & "\u000B" & checkedpath1 & "\u0007")
The result need to be like: ...
0
votes
1answer
148 views
T-SQL How to escape star (*) character
I want to search about this string
*|*
or more specific
LIKE '%*|*%'
but the
*
means the symbol itself. How to escape it?
EDIT: Actually, I was mislead because of other issue in my code. ...
4
votes
1answer
161 views
Python: Escape Characters not being interpreted
For some reason when I write an escape character in my code, the escape character is never interpreted. Could the fact that I used to work in Windows and now changed to Mac have anything to do with ...
0
votes
1answer
94 views
How to define a custom escape sequence for a string, and then parse it?
I'm writing a simple Ruby on Rails app. I have a model with a "description" attribute, which is a string.
I'd like to display this string in a view, but have some of the words in the string rendered ...
0
votes
2answers
185 views
Seperate text in java with backslash-zero as delimiter
Suppose I have a binary file that has this content:
abc\0def\0ghi\0
The content is already read and stored in a string variable s. How should I extract the components "abc", "def", "ghi" into ...
1
vote
1answer
375 views
escape character with ssh
I'm trying to write several commands trought ssh connection bue I got problem with escape characters. Below an example of what I'd like to do:
/usr/bin/ssh mrtg@172.20.29.40 echo -e "ciao\nprova"
I ...
-5
votes
2answers
66 views
PHP - How to escape “<” when generating Javascript on the fly? [closed]
I am trying to generate the Javascript of a page on the fly by loading it as a PHP page and echo'ing out the Javascript.
There is a for loop in the Javascript which uses the less than sign (<) and ...
0
votes
4answers
441 views
Escaping various characters in C# SQL from a variable
I'm working a C# form application that ties into an access database. Part of this database is outside of my control, specifically a part that contains strings with ", ), and other such characters. ...
0
votes
2answers
370 views
Index plus character in SOLR
I am indexing some URIs in SOLR using the UAX29URLEmailTokenizerFactory tokenizer. The problem is that some of my URIs are containing plus characters, which SOLR interprets as whitespaces and splits ...
0
votes
1answer
98 views
How can I erase all the characters from the console?
I want my program to be able to erase all the text it's printed. Every time it prints something, I call my print() method instead of System.out.print(), but then when I call the erase() method it ...
1
vote
1answer
245 views
Android post request escape character
How do you escape the character "ü" in a string.
I have this character in my json data:
{"Name": "Hyüsin"}
when I do a HttpPost in my android to the webServer. it gives me a "Bad Request" error as ...
2
votes
2answers
443 views
Lucene Index problems with “-” character
I'm having trouble with a Lucene Index, which has indexed words, that contain "-" Characters.
It works for some words that contain "-" but not for all and I don't find the reason, why it's not ...
1
vote
1answer
114 views
How include < or > character in value of property of bean in spring?
I have bean like:
<bean id="test">
...........
<property name="myQuery" value="select a,b,c from table1 where rownum < 10;" />
Character < in rownum < 10 isn't being accepted. ...
0
votes
1answer
52 views
Escape many tags at the same time in XML
I have XML tag that has the content which is HTML document.
<xml-tag>
<!--
<p>html document goes here</p>
<p><span id="important">important ...
1
vote
2answers
520 views
PowerShell get-childitem cannot handle filename starting with [ character even with escape character
I have a file in c:\temp directory named as [default].xml.
When I issue command: get-childitem "c:\temp`[default].xml" in the powershell console, it returns me nothing. However if I issue this ...
0
votes
1answer
339 views
Using escape character to replace & with & in an xml file vb.net
I am trying to replace an & in the name of a service in an xml document.
The & is causing an error. Is there anyway i can write some piece of code which will escape "&" as " & a m p ...
1
vote
3answers
78 views
Get out every character that is not a letter or a number PHP
I have a very simple string:
suhfdgfsdf6z87wrt348rfgrztf873$[{;÷[öw
and a very simple question:
How could I get out (exclude) every character that is not a letter or a number in PHP?
1
vote
3answers
612 views
String used for a file name has escape character “\”. How do I get around this?
PrintWriter out =
new PrintWriter("C:\Users\Slerig\Desktop\gnuplot\binary\cannonballOutput.txt");
This is my sample code. It is quite simple. It throws a "Invalid Escape Character" error because ...
3
votes
3answers
454 views
JQuery selector form element php array
im trying to use the code below to select a form element (i retrieve the values to validate the text)
$('#box1 [name=item[]]').val();
$('#box2 [name=item[]]').val();
i'm trying to get the value of ...
-1
votes
2answers
1k views
Display literal text in HTML
I need to display some literal text in my HTML page (it's automatically generated by an application. I wrote in C#.)
<TR>
<TD VALIGN="center" ...
0
votes
1answer
135 views
Android, strings loaded from .txt file are not being escaped
I am loading data from a resource within my own application, and the escape characters I place are not being processed the way I expect them to be. For example, a line in my resource would look like ...
1
vote
3answers
11k views
jQuery parseJSON
Receiving this error ("JSON.parse: unexpected character") when I try to parse a JSON validated string. It works perfectly when I remove the characters that need escaped (style="width:400px;"). What am ...
1
vote
3answers
193 views
Regex escape specific characters
I'm using preg_split to make array with some values.
If I have value such as 'This*Value', preg_split will split the value to array('This', 'Value') because of the * in the value, but I want to split ...
2
votes
2answers
4k views
Python: Display special characters when using print statement
I would like to display the escape characters when using print statement. E.g.
a = "Hello\tWorld\nHello World"
print a
Hello World
Hello World
I would like it to display:
...
4
votes
1answer
4k views
What escape character is \u000a
what escape character is
\u000a
I would like it to be a quotation mark, but this gigantic unicode table I looked at did not account for this one
3
votes
1answer
10k views
Java - Forward Slash Escape Character
Can anybody tell me how I use a forward slash escape character in Java. I know backward slash is \ \ but I've tried \ / and / / with no luck!
Here is my code:-
public boolean checkDate(String ...
1
vote
1answer
3k views
JSON escape space characters
How would I escape space characters in a JSON string? Basically my problem is that I've gotten into a situation where the program that reads the string can use HTML tags for formatting, but I need to ...
1
vote
1answer
551 views
Allowed named subpattern characters
What characters are allowed in named subpattern and is it possible to escape inside named subpattern?
(?<name>\w+)
I want to use this example ...
1
vote
1answer
1k views
unescape unicode from input
I am reading line by line from standard input with Scanner, then i print these lines to standard output. But, i need to convert escaped Unicode characters like \u00fd to actual character. Is there any ...
2
votes
1answer
357 views
Problem escaping HTML characters in JavaScript for page output
I was told that escaping HTML characters before entering them into a DB is a bad idea, so I have been modifying my code so that the raw input is stored without escaping. Now I am having a problem ...
0
votes
4answers
619 views
Canvas.drawText(“+5”) Doesn't show “+” symbol at all in Android? [closed]
I am sure this has something to do with needing an escape character or something - but I cannot figure it out. When I try to draw +5 to my canvas the + sign never shows up - I noly see the 5.
Anyone ...
2
votes
4answers
81 views
Is there some code that I can use to filter through strings to put escape characters in front of invalid MySQL characters?
I'm building a comment section on my website and I need to be able to filter through strings and escape invalid characters?
Is there any code that can automate this and return a string with escape ...
5
votes
4answers
7k views
problem with escape characters in JAXB Marshaller
I need to serialize an XML java object to a XML file using the JAXB Marshaller (JAXB version 2.2). Now in the xml object, I have a tag which contains String value such that:
"<"tagA>
...
0
votes
6answers
981 views
Printing string in Perl
Is there an easy way(A subroutine maybe) to print a string in Perl without escaping every special character ?
This is what I want to do:
print DELIMITER <I don't care what is here> ...
1
vote
3answers
714 views
Hard time with escape character
I need to strip out a few invalid characters from a string and wrote the following code part of a StringUtil library:
public static String removeBlockedCharacters(String data) {
if (data==null) {
...
1
vote
1answer
603 views
wcf forces chars escaping in response
All
I want to return unescaped html in the WCF response, therefore I need CDATA section to be included in the response all the time.
I realized I have no chance with DataContractSerializer.
So I ...
2
votes
1answer
976 views
MSBuild - Writing Escape Characters to Files
I've got a very similar scenario to the one described in this post. It describes how to load the contents of a file that contains properties & items, making sure they're resolved as part of the ...
-1
votes
3answers
2k views
How do I convert C/C++ string with escape character to a plain (raw) string
The function prototype would be:
string f (string s);
or
char* f (char* s);
f would transform a string represented by printable ascii char into a raw string.
and it would behaves as in the ...
1
vote
3answers
1k views
Unwanted escape characters in string
App.Config file contents:
<?xml version="1.0" encoding="utf-8" ?>
<configuration>
<appSettings>
<add key="ConnectionString"
value="Server=ADVDSQLMGA;User ...
0
votes
4answers
3k views
How to replace escape characters in Regular expression?
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 two or more occurances by single \t.
...
0
votes
4answers
215 views
Regular expression trouble
I've been struggling with getting a working regular expression for a little project of mine. Can anyone help me with a regex that matches anything inside <> symbols, but only when they are not ...
7
votes
3answers
5k views
What characters have to be escaped to prevent (My)SQL injections?
I'm using MySQL API's function
mysql_real_escape_string()
Based on the documentation, it escapes the following characters:
\0
\n
\r
\
'
"
\Z
Now, I looked into OWASP.org's ESAPI security library ...
4
votes
1answer
4k views
How to use escape character in replace function when replacing quotations in VB
Here is my code snippet:
Public Function convert(ByVal robert As String)
Try
robert = Replace(robert, "U", "A")
robert = Replace(robert, "\"", "A")
I want to ...

