vote up 0 vote down star

While editing someone else's abandoned Python script, I was trying to use

mystring.find("\n", i)

to get the index of the next newline in a string. But this consistently returns -1 (even when I try using "\r\n" instead of "\n"). I know there are newlines in the string, because I had just loaded it from a file. I am not very familiar with Python; am I missing something obvious?


EDIT: Yes, I tried printing out the string. It looks something like this:

expirydate = { year = 1820 }
minimum = { 500 }
extra = { }

The person who originally wrote the script apparently decided that it's better to load the entire file into memory before parsing it.


EDIT2: repr(mystring) looks like this (truncated again):

 expirydate = { year = 1820 }\n minimum = { 500 }\n extra = { }\n


EDIT3: As some people suspected, I was misunderstanding the input. Apparently, it was actually searching in a substring of the full input, and the substring simply didn't have a newline. Unfortunately, this still doesn't explain why the script doesn't work, but it helps me get a little closer. I'm closing this question and voting up everyone who took the time to answer. :)

flag

50% accept rate
Please post the repr(mystring) – S.Lott Oct 8 '08 at 1:07

closed as no longer relevant by mmyers Oct 8 '08 at 1:38

3 Answers

vote up 3 vote down check

I think your i has a wrong value

>>> "one\ntwo".find('\n')
3
link|flag
This looks like i > 60 which in this case will cause "find" to start it's search after the last '\n' in your string. – mhawke Oct 8 '08 at 1:41
vote up 1 vote down

I am guessing you are trying to split file at new lines.

Python has a builtin function split

>>>txt = "My \n long \n new line \n delimited \n file"
>>>print
My 
 long 
 new line 
 delimited 
 file
>>> txt.split('\n')
['My ', ' long ', ' new line ', ' delimited ', ' file']
link|flag
Actually, it was trying to find the first instance of a space ' ', or a '\n' if that occurred first. But thanks for the info. – mmyers Oct 8 '08 at 1:35
vote up 2 vote down

How are you reading the file? Some methods strip newlines when you use them. If you print mystring, you should have one blank line after it (which will mean 2 newlines).

Edit: What is i equal to? You probably don't need it there.

link|flag
I guess the i was to make it a little faster. This program is a rather brittle parser for save game files that can be rather large. How brittle? I changed the whitespace format of the saves and it no longer works. – mmyers Oct 8 '08 at 1:24
i will just tell the .find where to start, if it's not there it will start at 0, which is probably what you want. Also look into reading through the files with readlines() – Harley Oct 8 '08 at 1:28
Yeah, I know you can read by lines, but this script is a little too big for me to attempt a rewrite (especially since I don't really know Python). – mmyers Oct 8 '08 at 1:34

Not the answer you're looking for? Browse other questions tagged or ask your own question.