Re: make a string a list

2008-06-03 Thread Lie
On May 30, 4:30 am, Nikhil <[EMAIL PROTECTED]> wrote: > or a string iterable ? How can I do that. I have lots of '\r\n' > characters in the string which I think can be easier if it were made > into a list and I can easily see if the required value (its a numeral) > is present in it or not after som

Re: make a string a list

2008-05-30 Thread Tobiah
>> or a string iterable ? How can I do that. I have lots of '\r\n' >> characters in the string which I think can be easier if it were made >> into a list and I can easily see if the required value (its a numeral) >> is present in it or not after some position or after some characters' >> position.

Re: make a string a list

2008-05-30 Thread iapain
On May 29, 11:30 pm, Nikhil <[EMAIL PROTECTED]> wrote: > or a string iterable ? How can I do that. I have lots of '\r\n' > characters in the string which I think can be easier if it were made > into a list and I can easily see if the required value (its a numeral) > is present in it or not after so

Re: make a string a list

2008-05-29 Thread Alan Isaac
Nikhil wrote: or a string iterable ? How can I do that. I have lots of '\r\n' characters in the string which I think can be easier if it were made into a list and I can easily see if the required value (its a numeral) is present in it or not after some position or after some characters' positio

Re: make a string a list

2008-05-29 Thread Ben Finney
Nikhil <[EMAIL PROTECTED]> writes: > or a string iterable ? How can I do that. I have lots of '\r\n' > characters in the string which I think can be easier if it were made > into a list and I can easily see if the required value (its a numeral) > is present in it or not after some position or afte

Re: make a string a list

2008-05-29 Thread Matimus
On May 29, 2:30 pm, Nikhil <[EMAIL PROTECTED]> wrote: > or a string iterable ? How can I do that. I have lots of '\r\n' > characters in the string which I think can be easier if it were made > into a list and I can easily see if the required value (its a numeral) > is present in it or not after som

Re: make a string a list

2008-05-29 Thread jay graves
On May 29, 4:30 pm, Nikhil <[EMAIL PROTECTED]> wrote: > or a string iterable ? How can I do that. I have lots of '\r\n' > characters in the string which I think can be easier if it were made > into a list and I can easily see if the required value (its a numeral) > is present in it or not after som

make a string a list

2008-05-29 Thread Nikhil
or a string iterable ? How can I do that. I have lots of '\r\n' characters in the string which I think can be easier if it were made into a list and I can easily see if the required value (its a numeral) is present in it or not after some position or after some characters' position. Thanks, N