Tagged Questions
The backslash tag has no wiki summary.
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 ...
9
votes
5answers
2k views
Why is '\x' invalid in Python?
I was experimenting with '\' characters, using '\a\b\c...' just to enumerate for myself which characters Python interprets as control characters, and to what. Here's what I found:
\a - BELL
\b - ...
6
votes
4answers
1k views
Replace single backslash with double backslash
Seems simple enough, right? Well, I don't know.
Here's the code I'm trying:
input = Regex.Replace(input, "\\", "\\\\\\");
However, I'm receiving an error ArgumentException was unhandled - parsing ...
6
votes
2answers
6k views
How to print out a backslash in LaTeX
I want to write a backslash character to a text file using LaTeX.
The first line of code below declares a variable 'file' which describes the file 'myfile.out'. The second line opens the file and the ...
4
votes
1answer
309 views
How to replace backslash with double backslash?
I'm trying to replace backslashes in my string with two backslashes like so:
str.gsub!("\\", "\\\\")
But, it doesn't do anything. I'm confused...
3
votes
5answers
74 views
Change a “\” to a “/”
I'm looking for a simple piece of code that will change all the backslashes in a string to forward slashes using java.
I tried this:
word.replaceAll("\","/");
but it will not work. Anyone have a ...
3
votes
4answers
112 views
Regex and escaped and unescaped delimiter
question related to this
I have a string
a\;b\\;c;d
which in Java looks like
String s = "a\\;b\\\\;c;d"
I need to split it by semicolon with following rules:
If semicolon is preceded by ...
3
votes
2answers
2k views
java replace issues with ' (apostrophe/single quote) and \ (backslash) together
I seem to be having issues. I have a query string that has values that can contain single quotes. This will break the query string. So I was trying to do a replace to change ' to \'.
Here is a ...
3
votes
4answers
298 views
Passing meta-characters to Python as arguments from command line
I'm pretty new to programming, so any help is appreciated.
Thanks in advance.
I'm making a Python program that will parse the fields in some input lines. I'd like to let the user enter the field ...
3
votes
3answers
472 views
Regex to replace single backslashes, excluding those followed by certain chars
I have a regex expression which removes any backslashes from a string if not followed by one of these characters: \ / or }.
It should turn this string:
foo\bar\\batz\/hi
Into this:
...
3
votes
4answers
975 views
what does back slash “\” really mean?
HI, guys,
I think I need some accurate clarifing explanations about the backslash, this special character. How does the computer or the compiler see this backslash? and how is it stored in computer?
...
3
votes
5answers
923 views
autogenerated sql code: single backslash as an escape character is failing
I'm querying an oracle 9i database with:
SELECT * FROM table WHERE column LIKE '%' || ‘someText’ || '%' ESCAPE '\';
and it fails with the error "escape character must be character string of length ...
3
votes
2answers
440 views
how to replace the backslash in php to xml?
I'm trying to create a xml file from php.... it is not work properly... when i eentered \notepad\text ,it creates in xml file as
otepad ext....
what's the solution for this problem? can i use any ...
3
votes
4answers
501 views
C# - retrieve file path from config file - @ doesn't do it's magic
I'm currently working on a web service that retrieves an XML message, archives it and then processes it further. The archive folder is read from the Web.config. This is what the archive method looks ...
3
votes
4answers
830 views
What's the Magic Behind Escape(\) Character
How does the C/C++ compiler manipulate the escape character ["\"] in source code? How is compiler grammar written for processing that character? What does the compiler do after encountering that ...
2
votes
4answers
94 views
Ruby \' in a string
I am using Ruby 1.8.7, trying to generate a string with the \' characteres, in order to create a script for running in MySQL. The result should be like this:
INSERT INTO table (name, description) ...
2
votes
1answer
113 views
PHP directory separators, forcing forward slash; non-intrusive
Whenever I work with PHP (often) I typically work on a Windows box, however I (try to) develop platform agnostic applications; one major point of issue being the use of directory separators.
As many ...
2
votes
1answer
84 views
Python: Replacing certain Unicode entities with entities from dictionary
I have read already much about the problem of backslash escaping in python strings (and backslash recognition in Python in different encodings) and using backslashes in regular expressions, but still ...
2
votes
3answers
79 views
[python]: problem about python string literals
code goes below:
line = r'abc\def\n'
rline = re.sub('\\\\', '+', line) # then rline should be r'abc+def+n'
Apparently, I just want to replace the backslashes in line with '+'.
What I thought was ...
2
votes
1answer
217 views
problem while migrating to windows server from linux server
We have a php project which is developed on a linux platform and now we want that to be run on a windows server. We now face a problem with file paths and the problem is related to back slash & ...
2
votes
2answers
266 views
In Emacs org-mode, Latex export of literal string containing “\__” giving problem
I am trying to export a literal string from Emacs Org-mode to Latex for subsequent export to pdf. The literal string is:
str1\__str2
I have tried the following input in the Org file:
...
2
votes
1answer
509 views
Replacing backslashes in Python strings
I have some code to encrypt some strings in Python. Encrypted text is used as a parameter in some urls, but after encrypting, there comes backslashes in string and I cannot use single backslash in ...
2
votes
1answer
838 views
Ruby — looking for some sort of “Regexp unescape” method
I have a bunch of string with special escape codes that I want to store unescaped- eg, the interpreter shows
"\\014\"\\000\"\\016smoothing\"\\011mean\"\\022color\"\\011zero@\\016"
but I want it to ...
2
votes
2answers
394 views
R slash - escape oder sanatize using regex?
Hi there
I've just started analyzing some data using R - unfortunately I have encountered some problem...
I'm reading in a (tab separted) csv file and want to process the data and there is one ...
2
votes
1answer
566 views
How to tell if my YEN symbol is a backslash or a YEN?
I have a little program which is used to print the backslash symbol to the PDF file. In most English OS a backslash is displayed as a backslash, and my program works just fine. However, in Japanese OS ...
2
votes
2answers
870 views
How to escape single quotes in Flash?
I have a user supplied text and I need to prepend all backslashes and single quotes with a backslash. How to do that?
2
votes
2answers
12k views
Java Regular Expression value.split(“\\.”), The Forward Slash Dot divides by character?
From what I understand, the backslash dot ("\.") means one character of any character right? So because backslash is an escape it should be backslash backslash dot ("\\.")
What does this do to a ...
1
vote
1answer
32 views
search for backslash
I've JavaScript which searches for eg. a letter in a string and outputs "ok" if the letter is not there and "not ok" if the letter is there:
var term = "term";
var slash = "a";
var search ...
1
vote
3answers
66 views
Differences between single and double backslashes
How can i check if there is odd or even backslashes before a character?
PHP sees single and double backslashes same!
Please look at codes below:
$str = "\a\\b\\\c";
echo preg_replace("/\\\/", "+", ...
1
vote
1answer
62 views
Getting backslash-unescaped characters
I am working on a date conversion function like date() and need to parse string and leave escaped characters.
I mean changing $str1 to $str2 by regular expression (or any better way):
$str1 = ...
1
vote
3answers
52 views
Can not read a string that includes a backslash from an sql table
I am trying to read a string that includes a backslash in it from a sql table. For some reason I can not pass the back slash within the string.
My string is the user name and its in this format: ...
1
vote
2answers
86 views
Escaping backslash in string - javascript
I need to show the name of the currently selected file (in <input type="file"> element).
Everything is fine, the only problem is I'm getting this kind of string "C:\fakepath
\typog_rules.pdf" ...
1
vote
2answers
88 views
Making Perl Getopt::Long keep the backslash ( \ ) in a string
One of my colleagues wrote a perl script that asks for the user's windows domain/user name, which of course we enter the the following format domainname\username. The Getopt:Long module then converts ...
1
vote
1answer
63 views
javascript + ANT issue
working on an ANT build file, where I have two macros defined and need to call one Macro from other.
Here is what I need to do (I have simplified the whole scenario for easy understanding). My main ...
1
vote
5answers
72 views
Backslash Disappears from Filename
This is my code:
<script>
document.getElementById(div').innerHTML = '<a href="javascript:void(0);" onclick="openPhpFile (\'asdasD\\Asdeqw.txt\');">efff</a>';
</script>
When ...
1
vote
1answer
75 views
Java properties value ending in backlash
I have a value in a Java .properties file that needs to end in a backlash. The property value should be "\\server\folder\", and I enter the value like so:
name=\\\\server\\folder\\
The trailing ...
1
vote
2answers
63 views
how to handle backslash used in sed
please see these simple commands:
$ echo $tmp
UY\U[_
$ echo "a" | sed "s|a|${tmp}|g"
UY[_
see? "\U" is eaten. other backslashes wont survive either.
the question is, how to make the above command ...
1
vote
1answer
212 views
MySQL Escape Backslash
I have a series of regular expressions that include escape characters that I need to store in a mysql table.
If I don't escape the backslash, it is eliminated.
I have tried escaping the backslash in ...
1
vote
4answers
152 views
Problem Replacing Literal String \r\n With Line Break in PHP
I have a text file that has the literal string \r\n in it. I want to replace this with an actual line break (\n).
I know that the regex /\\r\\n/ should match it (I have tested it in Reggy), but I ...
1
vote
2answers
143 views
Escaping backslash in namespaces with DQL (Doctrine 2)
I'm a bit confused about writing queries in DQL.
From the official documentation:
$query = $em->createQuery('SELECT u FROM MyProject\Model\User u WHERE u.age > 20');
Why the backslash of the ...
1
vote
2answers
125 views
Slashes in url-string (c#)
I write into a string variable an url:
var path = @"http://46.146.52.139/" + @"TourService/" + TourName + @"/" + TourName + num + ".mp3";
I'm expecting
...
1
vote
1answer
70 views
Groovy: Replace / in Path with \
How would you replace / with \ in groovy??? so that
"//10.1.1.1/temp/test" would be "\10.1.1.1\temp\test"
"//10.1.1.1/temp/test".replaceAll(/'\/'/,'\')<-- ?!?? doesnt work
Anyone has an idea?
...
1
vote
2answers
78 views
String replace with backslashes in Python
I'm trying to do a simple replacement of " " with "\s" (the literal \s, not some sort of backslash escape). This is what I think should happen:
>>> 'asdf hjkl'.replace(' ', '\s')
...
1
vote
5answers
220 views
How to replace a double backslash with a single backslash in python?
I have a string. In that string are double backslashes. I want to replace the double backslashes with single backslashes, so that unicode char codes can be parsed correctly.
(Pdb) p fetched_page
...
1
vote
1answer
119 views
Getting multiple matches from regex pattern in Python
I'm writing a regular expression to parse arguments in a fashion similar to shell arguments, with spaces and quoted strings as the delimiters, as well as backslash escaping. This seems to work on ...
1
vote
3answers
364 views
Help with javascript regex to add backslashes to certain characters if doesn't exist already
I have another Javascript regex conundrum... (apologies if this is a bit long-winded - hard to explain!)
I have a script which sends a string to a popup window (all characters are encoded when they ...
1
vote
1answer
318 views
Apache and backslashes in mod_rewrite
I want to process all incoming requests through a single script (index.php in web-root).
So, the following is what currently happens: http://localhost/foo/bar/baz
Is routed by Apache (through ...
1
vote
3answers
944 views
Ignore escape characters (backslashes) in R strings
While running an R-plugin in SPSS, I receive a Windows path string as input e.g.
'C:\Users\mhermans\somefile.csv'
I would like to use that path in subsequent R code, but then the slashes need to be ...
1
vote
1answer
117 views
How to replace strings from an array
I'm working on a piece of code that uses regex expressions to do a find/replace for emoticons in a chat. However, I want to use the same array of values and output them as a reference.
The regex ...
1
vote
2answers
657 views
NSString Backslash escaping
I am working on an iPhone OS application that sends an xml request to a webservice. In order to send the request, the xml is added to an NSString. When doing this I have experienced some trouble with ...