Return the position of the first occurence of a character
Int firstOccurs( Char c, String str )
c The character to check for
str The string to check
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
Kaya standard library by Edwin Brady, Chris Morris and others ([email protected]). For further information see http://kayalang.org/
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.
Strings.elem (3kaya)
Strings.firstOccurs_1 (3kaya)