This section contains a set of nodes to manipulate strings

Display nodes

  • From string : Converts a string into a float value
  • To string : Converts a number value into a string
  • Starts with : Checks if a string starts with a given string
  • Ends with : Checks if a string ends with a given string
  • Length : Outputs the number of characters a string contains
  • Index of : Outputs the index position of the first occurrence of a given string in a text
  • Left : Outputs the n leftmost characters of a given string
  • Right : Outputs the n rightmost characters of a given string
  • Mid : Outputs a string that contains n characters of a given string, starting at a specified position index
  • Prepend : Prepends a string to the beginning of a given string
  • Append : Appends a string onto the end of a given string
  • Insert : Insert a string at a given index in a given string
  • Remove : Remove every occurrence of a string in a given string
  • Remove at index : Removes n characters from a given string at a given position index
  • Replace : Replaces in a given string every occurrence of a string by another string
  • Simplified : Removes all leading, trailing and excess internal whitespaces from a string
  • Compare : Compares two strings
  • Contains : Check if a string contains some other string
  • Trimmed : Remove all leading and trailing whitespaces from a string
  • Truncate : Truncate a given string at a specified position
  • To lower : Convert all characters in a string to lower case
  • To upper : Convert all characters in a string to upper case

Need more help with this?
Don’t hesitate to contact us here.

Thanks for your feedback.