c# – 用带连字符的字符串替换camel case字符串

前端之家收集整理的这篇文章主要介绍了c# – 用带连字符的字符串替换camel case字符串前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我该如何更改字符串

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.

原文链接:https://www.f2er.com/csharp/243358.html

猜你在找的C#相关文章