matthewbaggett/twig-extension-transform

添加了将一种大小写风格转换成另一种风格的功能。

v1.3 2021-05-16 03:52 UTC

This package is auto-updated.

Last update: 2024-09-16 10:58:25 UTC


README

Build Status

添加了将一种大小写风格转换成另一种风格的功能。

示例

{{ input|transform_camel_to_snake }} 将输出 this_is_an_example,输入为 thisIsAnExample

###支持的转换器

以下任一组合

  • 驼峰 thisIsAnExample
  • 蛇形 this_is_an_example
  • 大写蛇形 THIS_IS_AN_EXAMPLE
  • 脊柱形 this-is-an-example
  • studly caps ThisIsAnExample

格式为 'transform-from-to-target'

致谢

在Matthieu Moquet编写的优秀Camel包的基础上编写