TextUtil.cs 283 B

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. }