k = strchr(str,c) Integer i; String str,c;
>> S = "Hello world"; >> i = strchr(S, "w") i = 7 >> S(i) = "W"; >> print S S = Hello World >> j = strchr(S, "A") j = 0