How can I replace this with a regular expression.
"public int __ReplaceTheFirstLetter" or
"public string __ReplaceTheFirstLetter"
to
"private int replaceTheFirstLetter"
"private string replaceTheFirstLetter"
I want to get rid of the double underscores and convert public to private and replace the first Cap. letter after the underscores to lowercase.
"public int __ReplaceTheFirstLetter" or
"public string __ReplaceTheFirstLetter"
to
"private int replaceTheFirstLetter"
"private string replaceTheFirstLetter"
I want to get rid of the double underscores and convert public to private and replace the first Cap. letter after the underscores to lowercase.