Function endsWithIgnoreCase [src]

Prototype

pub fn endsWithIgnoreCase(haystack: []const u8, needle: []const u8) bool

Parameters

haystack: []const u8needle: []const u8

Example

test endsWithIgnoreCase { try std.testing.expect(endsWithIgnoreCase("Needle in HaYsTaCk", "haystack")); try std.testing.expect(!endsWithIgnoreCase("BoB", "Bo")); }

Source

pub fn endsWithIgnoreCase(haystack: []const u8, needle: []const u8) bool { return if (needle.len > haystack.len) false else eqlIgnoreCase(haystack[haystack.len - needle.len ..], needle); }