"CamelCase".replace(/[A-Z]/g, " $1")
Produces
>>" $1amel $1ase"
How to replace all occurrence of camel cases.
|
Produces
How to replace all occurrence of camel cases. |
||||
|
|
|
You need bracket ( ) for grouping
produces
|
|||
|
|
|
You don’t need to use a group. Use
And when using
|
|||
|
|
|
Maybe I'm missing something obvious but the previous answers do not act on CamelCased content but rather on all occurrences of uppercase letters. This example preserves continuous blocks of capital letters and only separates a non-uppercase-letter followed by an uppercase letter (i.e. the CamelCase).
|
|||
|
|