Maybe you should first try something and then come back with specific code that does not work so we can help you. Because right now, it sounds like you want us to do your work for you.
– Etienne de MartelJul 27 '20 at 20:16
Does it have to be using a regular expression? With 25k point I would assume you should be able to easily find out by yourself. :P
– AndrewJul 27 '20 at 20:16
I also found this other question, the second answer uses a regex: https://stackoverflow.com/questions/57556471/convert-kebab-case-to-camelcase-javascript
– AndrewJul 27 '20 at 20:24
2
@Andrew: Nice find, that'd be `Regex.Replace(input, "-.", m => m.Value.ToUpper().Substring(1))` in C#. Maybe I'll just add that as an answer to that dupe...
– HeinziJul 27 '20 at 20:29