valid_char


Description:

public bool valid_char (int index)

Checks whether valid string character starts at specified index.

Embedded NULs are not supported by the string class.

Example: Check position for a valid char:

public static int main (string[] args) {
string wisdom = "水は方"; //円の器に従い、人は善悪の友による。

// Output:
// ``true`` 水
// ``false``
// ``false``
// ``true`` は
// ``false``
// ``false``
// ``true`` 方
// ``false``
// ``false``
for (int i = 0; i < wisdom.length; i++) {
print (wisdom.valid_char (i).to_string ());
print ("\n");
}
return 0;
}

valac --pkg glib-2.0 string.valid_char.vala

Parameters:

index

a byte offset