forked from BilalY/Rasagar
13 lines
280 B
C#
13 lines
280 B
C#
|
using System.Text.RegularExpressions;
|
||
|
|
||
|
namespace UnityEditor.ShaderGraph
|
||
|
{
|
||
|
public static class TextUtil
|
||
|
{
|
||
|
public static string PascalToLabel(this string pascalString)
|
||
|
{
|
||
|
return Regex.Replace(pascalString, "(\\B[A-Z])", " $1");
|
||
|
}
|
||
|
}
|
||
|
}
|