Function startsWithIgnoreCase [src]
Prototype
pub fn startsWithIgnoreCase(haystack: []const u8, needle: []const u8) bool
Parameters
haystack: []const u8
needle: []const u8
Example
test startsWithIgnoreCase {
try std.testing.expect(startsWithIgnoreCase("boB", "Bo"));
try std.testing.expect(!startsWithIgnoreCase("Needle in hAyStAcK", "haystack"));
}
Source
pub fn startsWithIgnoreCase(haystack: []const u8, needle: []const u8) bool {
return if (needle.len > haystack.len) false else eqlIgnoreCase(haystack[0..needle.len], needle);
}