Files
lo/docs/data/core-pascalcase.md
T
Samuel Berthe fa095e4b4f fix(doc): fix go playground demo URL (#832)
* fix(doc): fix go playground demo URL

* fix(doc): add more go playground demo URL
2026-03-06 00:09:59 +01:00

490 B

name, slug, sourceRef, category, subCategory, playUrl, variantHelpers, similarHelpers, position, signatures
name slug sourceRef category subCategory playUrl variantHelpers similarHelpers position signatures
PascalCase pascalcase string.go#L166 core string https://go.dev/play/p/uxER7XpRHLB
core#string#pascalcase
core#string#camelcase
core#string#snakecase
core#string#kebabcase
core#string#capitalize
core#string#words
40
func PascalCase(str string) string

Converts a string to PascalCase.

lo.PascalCase("hello_world")
// "HelloWorld"