GetChar Function

Syntax:

GetChar(Str, Index)

Group:

String

Description: Returns the character at Index. The first char is at Index=1.

Parameters:

Parameter

Description

Str

Index into this string value.

Index

This is the index into the string value.

Example:

Sub Main
  Debug.Print GetChar("abcd",2) '"b"
End
Sub