I am splitting words from camel style string.Example
string str = "winAgainWinBest";
string r = @"(?=[A-Z])";
var splitted = Regex.Split(str, r);
I get the result
win
Again
Win
Best
When the string is mixed with special characters how will i remove it and get the words?
I mean string str = "win++Again@@Win--Best\\";