I have text like this. I want to split by New Line and Colons. Right now I'm splitting by New Lines.I'm using this code.
`data= data.split('\n')
and Its giving strange output. Can you please help? thanks
|
I have text like this. I want to split by
and Its giving strange output. Can you please help? thanks |
||||
|
\t are tabs. To clean things a bit, try this:
it will remove empty lines and strip whitespaces |
|||
|
It's doing just what you're asking, but it's full of tabs. Remove the tabs via
and you should see something more like what you're expecting. That will still leave some blank lines, so maybe you'll want to strip those too:
|
|||
|
|
|
How is your output strange? I mean, there's lots of tabulations Maybe you could |
|||
|
|
|
The str.split() method only accepts a single splitter. This precludes splitting on either a colon or a newline. You can overcome this limitation with something like:
You can also try the re.split() function for more fine grained control over splitting:
|
||||
|
|
|
This should do the trick
EDIT: Simon's answer will produce the same result while being a "cleaner" solution.
|
||||
|
|
\t\t\t\t\t.? I also triedstip()but not luck. – Kulbir Nov 18 '11 at 17:07