Twidget offers a variety of commands to manipulate text in various ways.
-
Converts all characters of the provided text to uppercase.
Converts all characters of the provided text to lowercase.
Concatenates two provided texts.
text_1: The first text to be concatenated.
text_2: The second text to be concatenated.
Extracts a substring from the provided text.
text: The original text.
start_index: The starting index of the substring.
end_index: The ending index of the substring.
Finds the index of the first occurrence of the second provided text in the first provided text.
text: The original text.
sub_text: The text whose first occurrence index is to be found.
Finds the index of the last occurrence of the second provided text in the first provided text.
text: The original text.
sub_text: The text whose last occurrence index is to be found.
Calculates the length of the provided text.
Replaces all occurrences of a specified substring with another substring.
text: The original text.
matching_text: The substring to be replaced.
replacement_text: The substring to replace with.
Removes whitespace from both ends of a text.
Splits a string into an array of substrings based on a specified delimiter.
text: The original text.
delimiter: The delimiter on which to split the text.
Checks whether the first text contains the second text or not.
text: The original text.
matching_text: The text to check for.
Checks whether the first text starts with the second text or not.
text: The original text.
matching_text: The text to check against the start.
Checks whether the first text ends with the second text or not.
text: The original text.
matching_text: The text to check against the end.
Checks whether the first text is equal to the second text or not.
text_1: The first text to compare.
text_2: The second text to compare.
Checks whether the first text is not equal to the second text or not.
text_1: The first text to compare.
text_2: The second text to compare.
Checks whether the provided text is empty or not.
Checks whether the provided text is not empty or not.
Date
Twidget offers a variety of commands to manipulate date objects. Below are the available commands along with their respective descriptions, inputs, and outputs. Current Date. Description: Returns the current date and time. Output: - Type: DATE Add Time. Description: Returns the date plus a specified...
Send External HTTP Request
Using Twidget, you can send external HTTP requests effortlessly. This functionality allows you to communicate with external servers or APIs. Below, you will find the necessary parameters and structure to set up an HTTP request. Parameters. - URL: The endpoint to which the request will be sent. - Met...
Conditionals
Condition Command. The Condition Command allows you to perform actions based on whether an expression evaluates to true or false. You can nest other commands within the true or false branches of the condition, enabling complex logic flows. - Expression Builder: Validate two variables to equal true. ...
Send Message
Send SMS Command. With Twidget, you can send SMS messages to phones using the `Send SMS` command. This functionality varies depending on the provider. Currently, we support Twilio as the SMS provider. To use Twilio for SMS integrations, you will need: - A Twilio account ID - Twilio Auth Token - A Tw...
Managing Files
Twidget offers a set of commands to manipulate files in your file store. Below are the descriptions and usage of each command to help you understand how to utilize them effectively. Get File. Retrieve a file via file path. Inputs: - `path`: The file path to retrieve the file from. Outputs: - `filena...