コンテンツにスキップ

String Transform

このコンテンツはまだ日本語訳がありません。

Transform and manipulate strings using various casing styles and trimming or reversing operations.

PortDescription
Input
String to transform
Transformation operation to apply
PortDescription
Transformed string
  • lower: Convert to lowercase
  • upper: Convert to uppercase
  • title: Convert to title case
  • camel: Convert to camelCase
  • pascal: Convert to PascalCase
  • snake: Convert to snake_case
  • alternating: Convert to aLtErNaTiNg CaSe
  • reverse: Reverse the string
  • trim: Trim whitespace from both ends
  • trim_left: Trim whitespace from the left
  • trim_right: Trim whitespace from the right

ID: core/string-transform@v1