_chomp


Description:

[ CCode ( cname = "g_strchomp" ) ]
public unowned string _chomp ()

Example: Remove trailing whitespace (inline):

public static int main (string[] args) {
string my_wisdom = " His scarf killed Stimson. -- Arrest the scarf then. \t ";
unowned string res = my_wisdom._chomp ();

// Output:
// ``' His scarf killed Stimson. -- Arrest the scarf then.'``
// ``' His scarf killed Stimson. -- Arrest the scarf then.'``
print ("'%s'\n", my_wisdom);
print ("'%s'\n", res);

return 0;
}

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