Next: Byte Data Character Set Search Functions, Previous: Byte Data Character Search Functions, Up: The Byte Data Library [Index]
integer b_find(data d, data v);
is the position of the first occurrence of the v string in the d byte array if any, -1 otherwise
integer b_scan(data d, integer p, data v);
is the position of the first occurrence of the v string not preceding the p position in the d byte array if any, -1 otherwise (negative position indications are interpreted with respect to the end of string)
See Negative Indices.
integer b_seek(data d, text s);
is the position of the first occurrence of the s string in the d byte array if any, -1 otherwise