Workshop.codes
Create

Index Of String Char Last updated September 03, 2025

Description

The index of a character within a String or -1 if no such character can be found. Despite the name only mentioning characters, this value also works with longer strings, looking for the substring and returning the index if found. For instance, Index Of String Char("abcdefg", "cd") returns 2, while Index Of String Char("abcdefg", "ce") returns -1, as "ce" is not a substring of "abcdefg".

Snippet

Index Of String Char(Global.variableName, Global.variableName);

Properties

Returns: Index
Parameters: String, Character

String
Type: String, Default: Global Variable
The String Value from which to search for the character.

Character
Type: String, Default: Global Variable
The character for which to search

Workshop.codes