I've got this code, which converts "dotted" string to camelCase in WebStorm File Template:
#set($Controller_name = ${StringUtils.removeAndHump(${NAME}, ".")})
For example it converts foo.bar.test
to FooBarTest
.
But what I need is to convert it from foo.bar.test
to fooBarTest
.
How can I do that?