Travis build: 189

This commit is contained in:
30secondsofcode
2019-10-31 07:39:05 +00:00
parent 17a4faf07a
commit 80776131a5
3 changed files with 9 additions and 7 deletions

View File

@ -114,7 +114,7 @@
"type": "snippetListing",
"title": "camel",
"attributes": {
"text": "Converts a string to camelcase.\n\nBreak the string into words and combine them capitalizing the first letter of each word, using a regexp, `title()` and `lower`.\n\n",
"text": "Converts a string to camelcase.\n\nUse `re.sub()` to replace any `-`,`_` or ` ` (space) with a space, using the regexp `r\"(_|-)+\"`.\nUse `title()` to capitalize the first letter of each word convert the rest to lowercase.\nFinally, use `replace()` to remove spaces between words.\n\n",
"tags": [
"string",
"regexp",
@ -122,7 +122,7 @@
]
},
"meta": {
"hash": "60b308cb7f28b676fb122949d04ae07af0d4e0fcb96f037b3aa3c09be9b2e7ab"
"hash": "9df97be0166e2a4a90859e878f986c0adb539ac41b85aac9c05e4dd0999155b5"
}
},
{