int GetLength(string) Return Type: int Parameters: string S Description: GetLength returns the number of characters in string 'S'. Example Code string Test = "Phantom\n"; int i = GetLength(Test); PrintMessage(i);