> For the complete documentation index, see [llms.txt](https://appmaster.gitbook.io/docs/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://appmaster.gitbook.io/docs/business-logic/block/functions/string/get-char-at-position.md).

# Get Char at Position

Returns a character of a string at a given index (starting at 1).

**Example:** Get Char at Position(string: "lorem", position: 3) = "r".

### Flow Connections <a href="#flow-connections" id="flow-connections"></a>

* \[Input] In - starts the block's execution.
* \[Output] Out - activates when the block has finished its execution.

### Data Connections <a href="#data-connections" id="data-connections"></a>

* \[Input] String (string) - string to be evaluated.
* \[Input] Position (integer) - index of the character to be returned in the "String" data input (starting at 1).
* \[Output] Char (string) - result of the operation.
