SYNOPSIS

Int firstOccurs( Char c, String str )

ARGUMENTS

c The character to check for

str The string to check

DESCRIPTION

Returns the position of the first occurence of the character in the string (or the length of the string if the character is not in the string).

  • str = "abcdefgabcde"; i = firstOccurs('a',str); // i = 0 i = firstOccurs('d',str); // i = 3 i = firstOccurs('h',str); // i = 12

AUTHORS

Kaya standard library by Edwin Brady, Chris Morris and others ([email protected]). For further information see http://kayalang.org/

LICENSE

The Kaya standard library is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License (version 2.1 or any later version) as published by the Free Software Foundation.

RELATED

Strings.elem (3kaya)

Strings.firstOccurs_1 (3kaya)