I have a String that will contain camel-case characters that I would like to add an underscore before each capital letter.
So for example, if I have "MyStringName" I would like to make it My_String_Name. Can anyone help me with the RegEx expression that would do this from a dynamic String? Thanks so much! Nick

