gpt4 book ai didi

regex - 在Python中删除字符串上的任何单个字母

转载 作者:行者123 更新时间:2023-12-04 22:04:05 25 4
gpt4 key购买 nike

我想从python中的字符串中删除任何单个字母。

例如:

input: 'z 23rwqw a 34qf34 h 343fsdfd'
output: '23rwqw 34qf34 343fsdfd'

试图用正则表达式解决一阵子没有成功。我知道如何将某些字符/符号中的内容切成两段,但不是我想做的。

我一直在修补
re.sub(r'^[^ ]*', '', text)

最佳答案

>>> ' '.join( [w for w in input.split() if len(w)>1] )
'23rwqw 34qf34 343fsdfd'

关于regex - 在Python中删除字符串上的任何单个字母,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32705962/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com