Function parseUnsigned [src]
Parses the string buf as unsigned representation in the specified base
of an integral value of type T.
When base is zero the string prefix is examined to detect the true base:
A prefix of "0b" implies base=2,
A prefix of "0o" implies base=8,
A prefix of "0x" implies base=16,
Otherwise base=10 is assumed.
Ignores '_' character in buf.
See also parseInt.
Prototype
pub fn parseUnsigned(comptime T: type, buf: []const u8, base: u8) ParseIntError!T
Parameters
T: type
buf: []const u8
base: u8
Possible Errors
The input was empty or contained an invalid character
The result cannot fit in the type specified
Example
test parseUnsigned {
try std.testing.expectEqual(50124, try parseUnsigned(u16, "050124", 10));
try std.testing.expectEqual(65535, try parseUnsigned(u16, "65535", 10));
try std.testing.expectEqual(65535, try parseUnsigned(u16, "65_535", 10));
try std.testing.expectError(error.Overflow, parseUnsigned(u16, "65536", 10));
try std.testing.expectEqual(0xffffffffffffffff, try parseUnsigned(u64, "0ffffffffffffffff", 16));
try std.testing.expectEqual(0xffffffffffffffff, try parseUnsigned(u64, "0f_fff_fff_fff_fff_fff", 16));
try std.testing.expectError(error.Overflow, parseUnsigned(u64, "10000000000000000", 16));
try std.testing.expectEqual(0xDEADBEEF, try parseUnsigned(u32, "DeadBeef", 16));
try std.testing.expectEqual(1, try parseUnsigned(u7, "1", 10));
try std.testing.expectEqual(8, try parseUnsigned(u7, "1000", 2));
try std.testing.expectError(error.InvalidCharacter, parseUnsigned(u32, "f", 10));
try std.testing.expectError(error.InvalidCharacter, parseUnsigned(u8, "109", 8));
try std.testing.expectEqual(1442151747, try parseUnsigned(u32, "NUMBER", 36));
// these numbers should fit even though the base itself doesn't fit in the destination type
try std.testing.expectEqual(0, try parseUnsigned(u1, "0", 10));
try std.testing.expectEqual(1, try parseUnsigned(u1, "1", 10));
try std.testing.expectError(error.Overflow, parseUnsigned(u1, "2", 10));
try std.testing.expectEqual(1, try parseUnsigned(u1, "001", 16));
try std.testing.expectEqual(3, try parseUnsigned(u2, "3", 16));
try std.testing.expectError(error.Overflow, parseUnsigned(u2, "4", 16));
// parseUnsigned does not expect a sign
try std.testing.expectError(error.InvalidCharacter, parseUnsigned(u8, "+0", 10));
try std.testing.expectError(error.InvalidCharacter, parseUnsigned(u8, "-0", 10));
// test empty string error
try std.testing.expectError(error.InvalidCharacter, parseUnsigned(u8, "", 10));
}
Source
pub fn parseUnsigned(comptime T: type, buf: []const u8, base: u8) ParseIntError!T {
return parseIntWithSign(T, u8, buf, base, .pos);
}