gpt4 book ai didi

python - 在 Python 中反转字符串但保留数字的原始顺序

转载 作者:太空宇宙 更新时间:2023-11-03 12:16:58 25 4
gpt4 key购买 nike

我可以使用 [::- 1] 语法反转字符串。请注意以下示例:

text_in = 'I am 25 years old'
rev_text = text_in[::-1]
print rev_text

输出:

dlo sraey 52 ma I

如何在保持数字顺序的同时只反转字母?

该示例的预期结果是 'dlo sraey 25 ma I'

最佳答案

这是一个使用 re 的方法:

>>> import re
>>> text_in = 'I am 25 years old'
>>> ''.join(s if s.isdigit() else s[::-1] for s in reversed(re.split('(\d+)', text_in)))
'dlo sraey 25 ma I'
>>>
>>> text_in = 'Iam25yearsold'
>>> ''.join(s if s.isdigit() else s[::-1] for s in reversed(re.split('(\d+)', text_in)))
'dlosraey25maI'

关于python - 在 Python 中反转字符串但保留数字的原始顺序,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/47235740/

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