> For the complete documentation index, see [llms.txt](https://docs.overthereality.ai/over-sdk-manual/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.overthereality.ai/over-sdk-manual/over-visual-scripting-legacy/nodes/operations/string.md).

# String

### Description

The String nodes provide several operations, specifically used for handling strings.

#### Generic

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

<table><thead><tr><th width="204">Node</th><th>Description</th></tr></thead><tbody><tr><td>Concat</td><td>Combines the values of two strings into one</td></tr><tr><td>Length</td><td>Returns the length of the input string</td></tr><tr><td>Contains</td><td>Checks whether the string provided contains a specific substring or not</td></tr><tr><td>Is Null or Empty</td><td>Returns <code>True</code> if the string is either <code>null</code> or an empty string</td></tr><tr><td>To String</td><td>Transforms a generic object into a sting</td></tr></tbody></table>

#### Utils

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

<table><thead><tr><th width="204">Node</th><th>Description</th></tr></thead><tbody><tr><td>String To Bool</td><td>Convert the string to a boolean value.</td></tr><tr><td>String To Float</td><td>Convert the string to a float value.</td></tr><tr><td>String To Int</td><td>Convert the string to a int value.</td></tr></tbody></table>

{% hint style="info" %}
If the conversion fails, an error message is printed at the console. (SDK 0.1.6+)
{% endhint %}


---

# 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.overthereality.ai/over-sdk-manual/over-visual-scripting-legacy/nodes/operations/string.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.
