I have some identificator. For example: ‘basicHtmlConverter.’
I need split his on the some words: ‘basic Html Converter’.
I think to using Regex.Split with some pattern.
I have some identificator. For example: ‘basicHtmlConverter.’ I need split his on the some
Share
No need for a regexp: you just need to scan the string once and LINQ your way through the task.
This will hand you a
IEnumerable<string>object containing all the data you need, which can become what you need like this:Basically, flow goes like this: