説明なし
選択できるのは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. }