Skip to content

string node #7952

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open

string node #7952

wants to merge 1 commit into from

Conversation

jtydhr88
Copy link
Contributor

@jtydhr88 jtydhr88 commented May 6, 2025

String nodes, requested in RFC https://github.com/Kosinkadink/rfcs/blob/main/rfcs/0000-corenodes.md#string-nodes
Designed nodes:

  1. Concatenate, and input is:
  • string_a,
  • string_b
  • separator
    image
  1. Substring, and input is:
  • string
  • start
  • end
    image
  1. Length, and input is
  • string
    image
  1. Case Converter, and input is
  • string
  • mode, with options are ["UPPERCASE", "lowercase", "Capitalize", "Title Case"]
    image
  1. Trim, and input is
  • string
  • mode, with options are ["BOTH", "LEFT", "RIGHT"]
    image
  1. Replace, and input is
  • string
  • find
  • replace
    image
  1. Contains, and input is
  • string
  • substring
  • case_sensitive
    image
  1. Compare, and input is
  • string_a
  • string_b
  • mode, with options are ["StartsWith", "EndsWith", "Equal"]
  • case_sensitive
    image
  1. Regex Match, and input is
  • string
  • regex_pattern
  • case_insensitive
  • multiline
  • dotall
    image
  1. Regex Extract, and input is
  • string
  • regex_pattern
  • mode, with options are ["First Match", "All Matches", "First Group", "All Groups"]
  • case_insensitive
  • multiline
  • dotall
  • group_index
    image

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant