jvalue / jayvee

Jayvee is a domain-specific language and runtime for automated processing of data pipelines
https://jvalue.github.io/jayvee/
150 stars 15 forks source link

[FEATURE] lowercase/uppercase operator #540

Closed rhazn closed 7 months ago

rhazn commented 7 months ago

User Story

  1. As a {user}
  2. I want {to use a lowercase/uppercase operator}
  3. So that {I can consistently make a string lowercase/uppercase}

User Acceptance Criteria

Examples

transform LowerCaseText {
    from inputValue oftype text;
    to outputValue oftype text;

    outputValue: lowercase inputValue;
}

Notes

Definitions of Done

rhazn commented 7 months ago

@TungstnBallon This is a different operator than we talked about, but the replaceAll operator will be better implemented as #530. We can move on to that in the future.