I need a regex for PropertyName e.g. HelloWorld2HowAreYou would get:
Hello HelloWorld2 HelloWorld2How etc.
I want to use it in C#
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
[A-Z][a-z0-9]+would give you all words that start with capital letter. You can write code to concat them one by one to get the complete set of words.For example matching
[A-Z][a-z0-9]+againstHelloWorld2HowAreYouwith global flag set, you will get the following matches.Just iterate through the matches and concat them to form the words.
Port this to
C#