has_suffix


Description:

[ Version ( since = "2.2" ) ]
[ CCode ( cname = "g_str_has_suffix" ) ]
public bool has_suffix (string suffix)

Looks whether a string ends with suffix.

Example: Check whether the string ends with a suffix:

public static int main (string[] args) {
// Output: ``true``
bool res = "Would You Like a Jelly Baby".has_suffix ("Baby");
print ("%s\n", res.to_string ());

// Output: ``false``
res = "Would You Like a Jelly Baby".has_suffix ("Would");
print ("%s\n", res.to_string ());

return 0;
}

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

Parameters:

suffix

the suffix to look for

str

a string to look in

Returns:

true if str ends with suffix, false otherwise