2024-04-25 01:41:47 +01:00
|
|
|
const print = @import("std").debug.print;
|
|
|
|
const mem = @import("std").mem; // will be used to compare bytes
|
|
|
|
|
|
|
|
pub fn main() void {
|
|
|
|
const bytes = "hello";
|
2024-05-04 19:29:17 +01:00
|
|
|
print("{}\n", .{@TypeOf(bytes)}); // *const [5:0]u8
|
|
|
|
print("{d}\n", .{bytes.len}); // 5
|
|
|
|
print("{c}\n", .{bytes[1]}); // 'e'
|
|
|
|
print("{d}\n", .{bytes[5]}); // 0
|
|
|
|
print("{}\n", .{'e' == '\x65'}); // true
|
|
|
|
print("{d}\n", .{'\u{1f4a9}'}); // 128169
|
|
|
|
print("{d}\n", .{'💯'}); // 128175
|
2024-04-25 01:41:47 +01:00
|
|
|
print("{u}\n", .{'⚡'});
|
2024-05-04 19:29:17 +01:00
|
|
|
print("{}\n", .{mem.eql(u8, "hello", "h\x65llo")}); // true
|
2024-04-25 01:41:47 +01:00
|
|
|
print("{}\n", .{mem.eql(u8, "💯", "\xf0\x9f\x92\xaf")}); // also true
|
2024-05-04 19:29:17 +01:00
|
|
|
const invalid_utf8 = "\xff\xfe"; // non-UTF-8 strings are possible with \xNN notation.
|
2024-04-25 01:41:47 +01:00
|
|
|
print("0x{x}\n", .{invalid_utf8[1]}); // indexing them returns individual bytes...
|
2024-05-04 19:29:17 +01:00
|
|
|
print("0x{x}\n", .{"💯"[1]}); // ...as does indexing part-way through non-ASCII characters
|
2024-04-25 01:41:47 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
// exe=succeed
|