暂无描述
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

TextUtil.cs 280B

123456789101112
  1. using System.Text.RegularExpressions;
  2. namespace UnityEditor.ShaderGraph
  3. {
  4. public static class TextUtil
  5. {
  6. public static string PascalToLabel(this string pascalString)
  7. {
  8. return Regex.Replace(pascalString, "(\\B[A-Z])", " $1");
  9. }
  10. }
  11. }