The Text operators section offers a suite of blocks designed to manipulate and transform text data within your workbook. These tools provide essential capabilities for handling strings, enabling you to modify text inputs dynamically to suit your application's needs. From basic transformations like concatenation and trimming to more complex operations such as regex matching and substring extraction, each block is built to offer specific text manipulation functionalities. Below, each block is described in detail to help you understand its functionality and use cases, empowering you to effectively manage and utilize text data in your projects.
Text [Text] to number
This block transforms text input into a numerical value, adhering to the decimal and thousand separators specified in the Data View locale settings. It efficiently handles the conversion of percentage figures as well.
Configuration
Inputs | Description |
Text | The text to be converted into a number. |
Outputs: Number - The numerical representation of the input text.
Example | Output |
2,599.99 | 2599.99 |
99% | 0.99 |
Supports
Feature | Description |
Embeds | Yes |
Reporting | Yes |
Concatenate [Text01] with [Text02]
This block combines two text inputs into a single text output. It allows users to merge text values from various sources, incorporate custom separators, and create well-formatted text combinations suitable for reports or data storytelling.
Configuration
Inputs | Description |
Text01 | The first part of the output text. |
Text02 | The second part of the output text. |
Outputs: Text - The combined result of Text01 and Text02.
Supports
Feature | Description |
Embeds | Yes |
Reporting | Yes |
Concatenate text [Text inputs]
This block combines multiple text inputs into a single text output. It allows users to merge text values from various sources, incorporate custom separators, and create well-formatted text combinations suitable for reports or data storytelling.
Configuration
Inputs | Description |
Text inputs | The text to concatenate together with the other inputs |
Use the plus sign to add text inputs. Use the minus sign to remove a text input.
Outputs: Text - The combined result of the text inputs.
Supports
Feature | Description |
Embeds | Yes |
Reporting | Yes |
To [Case Option] [Text]
This block transforms text input into a specific case format based on the selected option, making it suitable for formatting textual data consistently. It does not alter numerical values or special characters but adjusts the letter case as specified.
Configuration
Inputs | Description |
Case Option |
|
Text | The text to transform |
Outputs: Text - The text converted to the specified case format (either upper-, lower-, or title case).
Example | Output |
MyWorkbook to UPPERCASE | MYWORKBOOK |
Your@Email.com to lowercase | |
firstname lastname to Capitalise | Firstname Lastname |
Supports
Feature | Description |
Embeds | Yes |
Reporting | Yes |
Replace [Substring] with [New substring] in [Text]
This block replaces occurrences of a specified substring within the given text with a new substring. Ideal for data cleaning, standardisation, and content transformation tasks without requiring complex coding.
Configuration
Inputs | Description |
Substring | A string which may occur one or more times within the input Text. |
New substring | The string that will replace all occurrences of the input Substring within the input Text. |
Text | The original text. |
Outputs: Text - a string after replacing all occurrences of a given substring within the input string with another substring. The function is non-recursive and works from left to right.
Supports
Feature | Description |
Embeds | Yes |
Reporting | Yes |
Reverse [Text]
This block reverses the characters in the given text.
Configuration
Inputs | Description |
Text | The text to be reversed. |
Outputs: Text - The text in reverse order.
Example | Output |
DALLAS | SALLAD |
Supports
Feature | Description |
Embeds | Yes |
Reporting | Yes |
Trim spaces from [Trim Option] of [Text]
This block trims spaces from the specified part of the text, which can be from the left, right, or both sides of the text string.
Configuration
Inputs | Description |
Trim Option |
|
Text | The text to trim spaces from. |
Outputs: Text - The trimmed text.
Supports
Feature | Description |
Embeds | Yes |
Reporting | Yes |
Get substring [Text] [Start option] [Start #] [End option 2] [Letter # 2]
This block extracts a substring from a specified text based on user-defined start and end points. Ideal for text manipulation tasks such as data extraction and content formatting, this block simplifies complex string operations without requiring in-depth coding. Users can define the start and end positions in multiple ways, whether from the beginning, the end, or relative to another position within the text.
Configuration
Inputs | Description |
Text | The source text from which to extract the substring. |
Start option | Specifies how to determine the start position:
|
Start # | The position number where the substring starts, based on the selected start option. The position numbering starts from 1 for the first or last letter of the text.
Start # is ignored if first letter is selected in the Start option. |
End option | Specifies how to determine the end position:
|
End # | The position number where the substring ends, based on the selected end option. The position numbering starts from 1 for the first or last letter of the text.
End # is ignored if last letter is selected in the End option. |
Outputs: Text - The substring extracted from the start to the end positions specified.
Supports
Feature | Description |
Embeds | Yes |
Reporting | Yes |
Split [Text] by [Delimiter], get index [Index]
This block splits a string of text into an array of substrings using a specified delimiter. It then retrieves a segment based on the provided index, allowing for easy and flexible extraction of specific parts of the string. Ideal for parsing structured text formats like CSV or log files, this block simplifies data extraction tasks.
Configuration
Inputs | Description |
Text | The text to be split into parts. |
Delimiter | The character or string used to split the text. |
Index | The position of the segment to retrieve after splitting. Index starts with 1. |
Outputs: Text - The segment of the text at the specified index.
Example | Delimiter | Index | Output |
Hello|World | | | 1 | Hello |
@ | 2 | yourdomain.com |
Supports
Feature | Description |
Embeds | Yes |
Reporting | Yes |
Letter [Index] of [Text]
This block retrieves a specific letter from a given text based on the specified index. It is particularly useful for extracting characters from strings where each character’s position is significant, such as in data parsing, initial letter analysis, or when processing formatted codes. This tool facilitates quick and precise character extraction without the need for loops or complex string operations.
Configuration
Inputs | Description |
Index | The position of the letter to retrieve from the text. Index starts with 1. |
Text | The text from which to extract the letter. |
Outputs: Text - The single character at the specified position in the text.
Example | Index | Output |
Astrato | 1 | A |
Supports
Feature | Description |
Embeds | Yes |
Reporting | Yes |
Length of [Text]
This block calculates the total number of characters in a given text. It is useful for determining the length of strings in various contexts, such as validating input data, sizing fields in user interfaces, or performing text analysis tasks. This simple yet essential function aids in managing text data by providing immediate measurements of text lengths.
Configuration
Inputs | Description |
Text | The text for which to calculate the length. |
Outputs: Number - he number of characters in the provided text, including spaces and punctuation.
Example | Output |
Astrato | 7 |
Supports
Feature | Description |
Embeds | Yes |
Reporting | Yes |
Count [Substring] in [Text]
This block counts the number of times a specific substring appears within a given string of text. It is particularly useful for text analysis, such as frequency analysis in data processing or validating content for specific character requirements. This tool offers a straightforward approach to quantifying character occurrences, enhancing data validation and analytical tasks.
Configuration
Inputs | Description |
Substring | The specific substring to count within the text. |
Text | The text in which to count occurrences of the substring. |
Outputs: Number - The total count of the specified substring (case sensitive) in the provided text.
Example | Substring | Output |
Astrato Analytics | A | 2 |
Supports
Feature | Description |
Embeds | Yes |
Reporting | Yes |
[Text] contains [Substring]
This block transforms text input into a numerical value, adhering to the decimal and thousand separators specified in the Data View locale settings. It efficiently handles the conversion of percentage figures as well.
Configuration
Inputs | Description |
Text | The main text to be searched. |
Substring | The text segment to search for within the main text. |
Outputs: Boolean - Returns True
if the main text contains the substring, otherwise False
.
Example | Substring | Output |
Astrato Analytics | Astrato | true |
Astrato Analytics | astrato | false |
Supports
Feature | Description |
Embeds | Yes |
Reporting | Yes |
[Text] matches [Regex] regex
This block tests whether a given text matches a specified regular expression (regex) pattern. It is highly useful for validating inputs, searching for patterns, and processing text based on specific criteria. This function is vital for ensuring data integrity and compliance with formatting standards in user inputs and data processing.
Configuration
Inputs | Description |
Text | The text to be converted into a number. |
Outputs: Boolean - Returns True
if the text matches the regex pattern, otherwise False
.
Example | Regex | Output |
[A-Za-z0-9._%+-]+@[A-Za-z0-9.-]+\.[A-Za-z]{2,} | true |
Supports
Feature | Description |
Embeds | Yes |
Reporting | Yes |