gpt4 book ai didi

C# 反转字符串中的所有数字?

转载 作者:太空狗 更新时间:2023-10-29 23:59:06 30 4
gpt4 key购买 nike

我有一个字符串:

你好7866592这是我的12432字符串和823我需要翻转所有123

我想成为

你好2956687这是我的23421字符串和328我需要翻转所有321

我使用这个正则表达式来获取所有数字:

Regex nums = new Regex("\d+");

最佳答案

var replacedString = 
Regex.Replace(//finds all matches and replaces them
myString, //string we're working with
@"\d+", //the regular expression to match to do a replace
m => new string(m.Value.Reverse().ToArray())); //a Lambda expression which
//is cast to the MatchEvaluator delegate, so once the match is found, it
//is replaced with the output of this method.

关于C# 反转字符串中的所有数字?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11144754/

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