GLib.VariantType.string_scan

function string_scan(string: String, limit: String): [ok: Boolean, endptr: String] {
    // Gjs wrapper for g_variant_type_string_scan()
}
  

Scan for a single complete and valid GVariant type string in string. The memory pointed to by limit (or bytes beyond it) is never accessed.

If a valid type string is found, endptr is updated to point to the first character past the end of the string that was found and true is returned.

If there is no valid type string starting at string, or if the type string does not end before limit then false is returned.

For the simple case of checking if a string is a valid type string, see GLib.variant_type_string_is_valid.

Since 2.24

string

a pointer to any string

limit

the end of string, or null

ok

true if a valid type string was found

endptr

location to store the end pointer, or null