mastodon.xyz is one of the many independent Mastodon servers you can use to participate in the fediverse.
A Mastodon instance, open to everyone, but mainly English and French speaking.

Administered by:

Server stats:

845
active users

#codetips

0 posts0 participants0 posts today

Understanding string slicing in #RustLang 🦀:

Remember: slices are based on bytes, not characters! Slicing an ASCII string is different from slicing a multibyte Unicode string. If you slice incorrectly, Rust will panic at runtime. ⚠️

let multibyte_string = "España";
let slice_multibyte = &multibyte_string[..5]; // This will panic! 🚫

Ensure your slices align with valid UTF-8 character boundaries.