Python 中单行上的多个分割

发布于 2024-11-18 11:23:12 字数 161 浏览 1 评论 0原文

我想知道是否有一种更紧凑(或Pythonic)的方法来对某些输入字符串进行多次分割。现在我正在做:

[a,bc,de] = 'a,b:c,d/e'.split(',')
[b,c] = bc.split(':')
[d,e] = de.split('/')

I would like to know if there is a more compact (or Pythonic) way of doing several splits of some input string. Now I'm doing:

[a,bc,de] = 'a,b:c,d/e'.split(',')
[b,c] = bc.split(':')
[d,e] = de.split('/')

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

北陌 2024-11-25 11:23:12

我会使用正则表达式库。您不需要使用列表来解包,您可以使用元组,如下所示。

import re
regex = re.compile(r'[,:/]')
a, b, c, d, e = regex.split('a,b:c,d/e')

I'd use the regular expression library. You don't need to use lists for unpacking, you can use tuples as below.

import re
regex = re.compile(r'[,:/]')
a, b, c, d, e = regex.split('a,b:c,d/e')
飞烟轻若梦 2024-11-25 11:23:12

您可能更适合使用正则表达式拆分方法。不要这样做,它会非常慢,但只是添加答案:(

a,b,c,d,e = flatten( (x.split(',') for x in y.split(':')) for y in z.split('/')  )

将左侧展平作为读者的练习(请参阅展平))

You're better of with regex split method probably. Don't do this, it will be crazy slow, but just to add the answer:

a,b,c,d,e = flatten( (x.split(',') for x in y.split(':')) for y in z.split('/')  )

(flatten left as an exercise for the reader (see flatten))

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文