Is your feature request related to a problem? Please describe.
We are sometimes using capitalization for strings in bicep and I was always wondering, why there is no capitalize() function.
Currently (via bicep console):
var test = 'test'
var capitalized = '${toUpper(substring(test, 0, 1))}${substring(test, 1)}'
capitalized
'Test'
Describe the solution you'd like
A dedicated capitalize() function
Is your feature request related to a problem? Please describe.
We are sometimes using capitalization for strings in bicep and I was always wondering, why there is no capitalize() function.
Currently (via bicep console):
Describe the solution you'd like
A dedicated capitalize() function