String Services (system.string)
This namespace provides services for manipulating and analyzing text within the pipeline.
Services
system.string:Uppercase
Converts a string to all uppercase letters.
- Inputs:
text: (string) The source text.
- Outputs:
result: (string) The uppercased text.
system.string:Lowercase
Converts a string to all lowercase letters.
- Inputs:
text: (string) The source text.
- Outputs:
result: (string) The lowercased text.
system.string:Trim
Removes whitespace from the beginning and end of a string.
- Inputs:
text: (string) The source text.
- Outputs:
result: (string) The trimmed text.
system.string:Length
Calculates the number of characters in a string.
- Inputs:
text: (string) The source text.
- Outputs:
result: (int) The length of the string.
system.string:Substring
Extracts a portion of a string.
- Inputs:
text: (string) The source text.start: (int) The starting index (inclusive).end: (int) The ending index (exclusive).
- Outputs:
result: (string) The extracted substring.
