> For the complete documentation index, see [llms.txt](https://docs.avoautomation.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.avoautomation.com/avo-assure/actions/generic/string-operations/trim.md).

# Trim

This is a pre-built Action located under the **@Generic Element**. The functionality of this Action in Avo Assure is to remove extra spaces at the beginning and end of the input text. The updated text is stored in a dynamic variable.

## **Syntax**

**Input Value**: `<input string>`&#x20;

| Argument                                | Description                                                  |
| --------------------------------------- | ------------------------------------------------------------ |
| <p>\<input string></p><p>(Required)</p> | Provide the string from which the spaces need to be removed. |

**Output Value**:  `<Dynamic Variable>;<Dynamic Variable>(Optional)`

| Argument                                     | Description                                                                 |
| -------------------------------------------- | --------------------------------------------------------------------------- |
| <p> \<Dynamic Variable></p><p>(Required)</p> | This dynamic variable stores the trimmed string.                            |
| <p>\<Dynamic Variable></p><p>(Optional) </p> | This dynamic variable stores the operation status as **True** or **False**. |

### **Example**: Trimming Extra Spaces from a String

In this example, we explain how to remove unwanted spaces from the beginning and end of a string.

* **Action**: Trim
* **Input Value**:    Alice  &#x20;
  * This specifies the string (  **Alice**  ) that contains leading and trailing spaces to be removed.
* **Output Value**: {Trimmed String}
  * The trimmed result (Alice) is stored in this **{Trimmed String}** dynamic variable for further use.
  * If the second output variable is defined, it stores the action status with the following possible values:
    * **True**: If the trimming is successful.
    * **False**: If the trimming fails due to invalid input or configuration.
* **Logical Explanation**: The **Trim** action fetches the value from the **Input Value** column ( **Alice**  ) and removes the extra spaces from both ends. The resulting string (Alice) is then stored in the **{Trimmed String}** variable.

<figure><img src="/files/g3RShlgELyBagGfQuMs3" alt=""><figcaption></figcaption></figure>

#### **Knowledge Bites:**&#x20;

Here are some examples of different string scenarios:

{% hint style="info" %}
**Note**: In the below **Input Value** examples, the strings contain spaces. Double quotation marks are used only to clearly highlight these spaces. Do not include the double quotation marks when entering the actual Input Value.
{% endhint %}

| String               | Input Value                     | Result           |
| -------------------- | ------------------------------- | ---------------- |
| Text Strings         | "      Automation             " | Automation       |
| Numeric Strings      | "    123456   "                 | 123456           |
| Special Character    | "     <abc@domain.com>  "       | <abc@domain.com> |
| Alphanumeric strings | "         ID2025     "          | ID2025           |


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## Querying This Documentation
If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter, and the optional `goal` query parameter:

```
GET https://docs.avoautomation.com/avo-assure/actions/generic/string-operations/trim.md?ask=<question>&goal=<endgoal>
```

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
