updated documentation
the regexp is not having any pattern to match a space. Hence changed the documentation accordingly.
This commit is contained in:
committed by
GitHub
parent
a9b1277377
commit
e90fa5db21
@ -5,7 +5,7 @@ tags: string,regexp,intermediate
|
|||||||
|
|
||||||
Converts a string to camelcase.
|
Converts a string to camelcase.
|
||||||
|
|
||||||
Use `re.sub()` to replace any `-`,`_` or ` ` (space) with a space, using the regexp `r"(_|-)+"`.
|
Use `re.sub()` to replace any `-` or `_` with a space, using the regexp `r"(_|-)+"`.
|
||||||
Use `title()` to capitalize the first letter of each word convert the rest to lowercase.
|
Use `title()` to capitalize the first letter of each word convert the rest to lowercase.
|
||||||
Finally, use `replace()` to remove spaces between words.
|
Finally, use `replace()` to remove spaces between words.
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user