Python论坛  - 讨论区

标题:Re: Re: [python-chinese]如何把字符串中按空格分开的元素分别提取出来?

2005年09月05日 星期一 16:35

limodou limodou at gmail.com
Mon Sep 5 16:35:49 HKT 2005

在 05-9-5,广星<guangxing at ict.ac.cn> 写道:
> 这些方法之类的您是怎么来查,又从哪里来查到呢?

无它,唯手熟而。程序写多了,自然就记住了,顶多查下语法,代码就出来了。

-- 
I like python! 
My Donews Blog: http://www.donews.net/limodou

[导入自Mailman归档:http://www.zeuux.org/pipermail/zeuux-python]

2005年09月05日 星期一 20:58

Fluke fluke.l at gmail.com
Mon Sep 5 20:58:11 HKT 2005

如果str = 'dfsdf sdfsdf sdfsdf dsf dfdf dfdf'
我要按n(不定值)个空格来分,怎么办? 

 On 9/5/05, limodou <limodou at gmail.com> wrote: 
> 
> 在 05-9-5,广星<guangxing at ict.ac.cn> 写道:
> > 这些方法之类的您是怎么来查,又从哪里来查到呢?
> 
> 无它,唯手熟而。程序写多了,自然就记住了,顶多查下语法,代码就出来了。
> 
> --
> I like python!
> My Donews Blog: http://www.donews.net/limodou
> 
> _______________________________________________
> python-chinese list
> python-chinese at lists.python.cn
> http://python.cn/mailman/listinfo/python-chinese
> 
> 
> 


-- 
Yours,
fluke
fluke at sfcube.net
http://sfcube.net/blog
-------------- next part --------------
An HTML attachment was scrubbed...
URL: http://lists.exoweb.net/pipermail/python-chinese/attachments/20050905/876e8242/attachment.html

[导入自Mailman归档:http://www.zeuux.org/pipermail/zeuux-python]

2005年09月05日 星期一 21:19

shiziliang shizl at bis.com.cn
Mon Sep 5 21:19:10 HKT 2005

perl的语法是这样的。
$_ = 'dfsdf sdfsdf sdfsdf  dsf   dfdf dfdf';
@str_list = splite(/ +/);   #一个或多个空格/ +/
python 也可以吧,我又猜。
  ----- Original Message -----
  From: Fluke
  To: limodou at gmail.com ; python-chinese at lists.python.cn
  Sent: Monday, September 05, 2005 8:58 PM
  Subject: Re: Re: [python-chinese]如何把字符串中按空格分开的元素分别提取出
来?


  如果str = 'dfsdf sdfsdf sdfsdf  dsf   dfdf dfdf'
  我要按n(不定值)个空格来分,怎么办?


  On 9/5/05, limodou <limodou at gmail.com> wrote:
    在 05-9-5,广星<guangxing at ict.ac.cn> 写道:
    > 这些方法之类的您是怎么来查,又从哪里来查到呢?

    无它,唯手熟而。程序写多了,自然就记住了,顶多查下语法,代码就出来了。

    --
    I like python!
    My Donews Blog: http://www.donews.net/limodou

    _______________________________________________
    python-chinese list
    python-chinese at lists.python.cn
    http://python.cn/mailman/listinfo/python-chinese






  --
  Yours,
    fluke
  fluke at sfcube.net
  http://sfcube.net/blog


----------------------------------------------------------------------------
--


  _______________________________________________
  python-chinese list
  python-chinese at lists.python.cn
  http://python.cn/mailman/listinfo/python-chinese
-------------- next part --------------
An HTML attachment was scrubbed...
URL: http://lists.exoweb.net/pipermail/python-chinese/attachments/20050905/e688f5f7/attachment.htm

[导入自Mailman归档:http://www.zeuux.org/pipermail/zeuux-python]

2005年09月05日 星期一 21:26

Qiangning Hong hongqn at gmail.com
Mon Sep 5 21:26:39 HKT 2005

Fluke wrote:
> 如果str = 'dfsdf sdfsdf sdfsdf  dsf   dfdf dfdf'
> 我要按n(不定值)个空格来分,怎么办?

In [9]: s = 'dfsdf sdfsdf sdfsdf  dsf   dfdf dfdf'

In [10]: n = 2

In [11]: s.split(' ' * n)
Out[11]: ['dfsdf sdfsdf sdfsdf', 'dsf', ' dfdf dfdf']

In [12]: import re

In [13]: re.split(' ' * n + '+', s)
Out[13]: ['dfsdf sdfsdf sdfsdf', 'dsf', 'dfdf dfdf']


-- 
Qiangning Hong
http://www.hn.org/hongqn (RSS: http://feeds.feedburner.com/hongqn)

Registered Linux User #396996
Get Firefox! <http://www.spreadfirefox.com/?q=affiliates&id;=67907&t;=1>
Thunderbird! <http://www.spreadfirefox.com/?q=affiliates&id;=67907&t;=183>

[导入自Mailman归档:http://www.zeuux.org/pipermail/zeuux-python]

如下红色区域有误,请重新填写。

    你的回复:

    请 登录 后回复。还没有在Zeuux哲思注册吗?现在 注册 !

    Zeuux © 2025

    京ICP备05028076号