473,386 Members | 1,823 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,386 software developers and data experts.

Using repr() with escape sequences

Hi,

My application is receiving strings, representing windows paths, from
an external source. When using these paths, by for instance printing
them using str() (print path), the backslashes are naturally
interpreted as escape characters.
print "d:\thedir" d: hedir

The solution is to use repr() instead of str():
print repr("d:\thedir") 'd:\thedir'

What I have not been able to figure out is how to handle escape
sequences like \a, \b, \f, \v and \{any number} inside the paths. Using
repr() on these escape sequences either prints the hex value of the
character (if "unprintable" i guess) or some character ( like in the
last example below).
print repr("d:\thedir\10") 'd:\thedir\x08'
print repr("d:\thedir\foo") 'd:\thedir\x0coo'
print repr("d:\thedir\100")

'd:\thedir@'

Could someone clear this out for me and let me know how I can find the
"real" path that I am trying to receive?

/Henrik

Feb 23 '06 #1
5 3077
On Thu, 23 Feb 2006 07:32:36 -0800, nummertolv wrote:
Hi,

My application is receiving strings, representing windows paths, from
an external source. When using these paths, by for instance printing
them using str() (print path), the backslashes are naturally
interpreted as escape characters.
print "d:\thedir" d: hedir
No. What is happening here is not what you think is happening.
The solution is to use repr() instead of str():


The solution to what? What is the problem? The way the strings are
DISPLAYED is surely not the issue, is it?
print repr("d:\thedir")

'd:\thedir'

You have created a string object: "d:\thedir"

That string object is NOT a Windows path. It contains a tab character,
just like the print statement shows -- didn't you wonder about the large
blank space in the string?

Python uses backslashes for character escapes. \t means a tab character.
When you enter "d:\thedir" you are embedding a tab between the colon and
the h.

The solutions to this problem are:

(1) Escape the backslash: "d:\\thedir"

(2) Use raw strings that don't use char escapes: r"d:\thedir"

(3) Use forward slashes, and let Windows automatically handle them:
"d:/thedir"

However, if you are receiving strings from an external source, as you say,
and reading them from a file, this should not be an issue. If you read a
file containing "d:\thedir", and print the string you have just read, the
print statement uses repr() and you will see that the string is just
what you expect:

d:\thedir

You can also check for yourself that the string is correct by looking at
its length: nine characters.
--
Steven.

Feb 23 '06 #2
I think I might have misused the terms "escape character" and/or
"escape sequence" or been unclear in some other way because I seem to
have confused you. In any case you don't seem to be addressing my
problem.

I know that the \t in the example path is interpreted as the tab
character (that was part of the point of the example) and what the
strings are representing is irrelevant. And yes, the way the strings
are displayed is part of the issue.

So let me try to be clearer by boiling the problem down to this:

- Consider a string variable containing backslashes.
- One or more of the backslashes are followed by one of the letters
a,b,f,v or a number.

myString = "bar\foo\12foobar"

How do I print this string so that the output is as below?

bar\foo\12foobar

typing 'print myString' prints the following:

bar oo
foobar

and typing print repr(myString) prints this:

'bar\x0coo\nfoobar'
Hope this makes it clearer. I guess there is a simple solution to this
but I have not been able to find it. Thanks.

/H

Feb 23 '06 #3
nummertolv enlightened us with:
myString = "bar\foo\12foobar"
Are the interpretations of the escape characters on purpose?
How do I print this string so that the output is as below?

bar\foo\12foobar
Why do you want to?
typing 'print myString' prints the following:

bar oo
foobar


Which is correct.

Sybren
--
The problem with the world is stupidity. Not saying there should be a
capital punishment for stupidity, but why don't we just take the
safety labels off of everything and let the problem solve itself?
Frank Zappa
Feb 23 '06 #4
nummertolv wrote:
- Consider a string variable containing backslashes.
- One or more of the backslashes are followed by one of the letters
a,b,f,v or a number.

myString = "bar\foo\12foobar"

How do I print this string so that the output is as below?

bar\foo\12foobar

typing 'print myString' prints the following:

bar oo
foobar

and typing print repr(myString) prints this:

'bar\x0coo\nfoobar'


The interpretation of escape sequences happens when the Python compiler
reads the string "bar\foo\12foobar". You'll see that when you do
something like
map (ord, "bar\foo\12foobar") [98, 97, 114, 12, 111, 111, 10, 102, 111, 111, 98, 97, 114]
This displays the ASCII values of all the characters.

If you want to use a string literal containing backslashes, use r'' strings: myString = r'bar\foo\12foobar'
map (ord, myString) [98, 97, 114, 92, 102, 111, 111, 92, 49, 50, 102, 111, 111, 98, 97, 114] print myString bar\foo\12foobar print repr (myString)

'bar\\foo\\12foobar'

If you get the strings from an external source as suggested by your
original post, then you really have no problem at all. No interpretation
of escape sequences takes place when you read a string from a file.

Daniel
Feb 23 '06 #5
myString = "bar\foo\12foobar"
print repr(myString)

My "problem" was that I wanted to know if there is a way of printing
"unraw" strings like myString so that the escape characters are written
like a backslash and a letter or number. My understanding was that
repr() did this and it does in most cases (\n and \t for instance). In
the cases of \a,\b,\f and \v however, it prints hexadecimal numbers.
But I guess I'll just have to live with that and as you point out, it
doesn't have to be a problem anyway.

Feb 27 '06 #6

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

6
by: Paul Watson | last post by:
How can I get the escapes from a command line parameter interpreted? The user provides a string on the command line. The string might contain traditional escapes such as \t, \n, etc. It might...
6
by: Walter L. Preuninger II | last post by:
I need to convert escape sequences entered into my program to the actual code. For example, \r becomes 0x0d I have looked over the FAQ, and searched the web, with no results. Is there a...
7
by: teachtiro | last post by:
Hi, 'C' says \ is the escape character to be used when characters are to be interpreted in an uncommon sense, e.g. \t usage in printf(), but for printing % through printf(), i have read that %%...
5
by: Anton81 | last post by:
Hi all! I used escape sequences to produce colour output, but a construct like print "%8s" % str_with_escape doesn't do the right thing. I suppose the padding counts the escape characters,...
4
by: JJ | last post by:
Is there a way of checking that a line with escape sequences in it, has no strings in it (apart from the escape sequences)? i.e. a line with \n\t\t\t\t\t\t\t\r\n would have no string in it a...
2
by: | last post by:
I mainly work on OS X, but thought I'd experiment with some Python code on XP. The problem is I can't seem to get these things to work at all. First of all, I'd like to use Greek letters in the...
10
by: hanaa | last post by:
Hello there. $str="This is \na ball"; echo $str; Is there a way i can make the text to be as is, without expanding the escape sequences. I know that single quoted strings do not expand escape...
5
by: John Ztwin | last post by:
Hello, I have a file that contains ordinary text and some special charaters in Unicode escape sequences (\uxxxx). When I read the file using e.g. StreamReader Unicode escape sequences are not...
10
by: David C. Ullrich | last post by:
I've been saving data in a file with one line per field. Now some of the fields may become multi-line strings... I was about to start escaping and unescaping linefeeds by hand, when I realized...
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
0
by: aa123db | last post by:
Variable and constants Use var or let for variables and const fror constants. Var foo ='bar'; Let foo ='bar';const baz ='bar'; Functions function $name$ ($parameters$) { } ...
0
by: ryjfgjl | last post by:
If we have dozens or hundreds of excel to import into the database, if we use the excel import function provided by database editors such as navicat, it will be extremely tedious and time-consuming...
0
by: ryjfgjl | last post by:
In our work, we often receive Excel tables with data in the same format. If we want to analyze these data, it can be difficult to analyze them because the data is spread across multiple Excel files...
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...
0
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers,...
0
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.