Johan Andrébeck

Results 3 comments of Johan Andrébeck

Fix works for me as well. Can this be considered being fixed in a PR?

> @tomasmota, nice solution. I've shortened it to this one: > > ``` > # Convert camelCase or PascalCase to kebab-case > lower(replace("myCamelCaseString", "/([a-z0-9])([A-Z])/", "$1-$2")) > ``` Thanks, that works...