Skip to content

Instantly share code, notes, and snippets.

@actaneon
Created June 30, 2009 19:50
Show Gist options
  • Save actaneon/138369 to your computer and use it in GitHub Desktop.
Save actaneon/138369 to your computer and use it in GitHub Desktop.
public string SplitPascalCase(string s)
{
return System.Text.RegularExpressions.Regex.Replace(s, "([a-z](?=[A-Z])|[A-Z](?=[A-Z][a-z]))", "$1 ");
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment