gpt4 book ai didi

c# - 用带连字符的字符串替换驼峰式字符串

转载 作者:太空狗 更新时间:2023-10-29 18:22:12 26 4
gpt4 key购买 nike

我将如何更改字符串

aboutUs

about-us

如果可能的话,我希望能够用正则表达式替换来做到这一点。我试过:

public static string ToHypenCase(this string source) {
return Regex.Replace(source, @"[A-Z]", "-$1");
}

最佳答案

您可以结合使用正则表达式和 ToLower(),如下所示:

string s = "quickBrownFoxJumpsOverTheLazyDog";
string res = Regex.Replace(s, @"([a-z])([A-Z])", "$1-$2").ToLower();
Console.WriteLine(res);

Demo on ideone.

关于c# - 用带连字符的字符串替换驼峰式字符串,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22650248/

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