Converts the string to path/case. Example: 'helloWorld' -> 'hello/world'
String toPathCase([String separator = '/']) => _extractComponents().join(separator);