Split A Rust String Into Individual Characters
April 2025
Chop Chop
The .split() on a String outputs empty strings at the start and end. This is how I'm removing them.
Output:
[_active_nvim_run:8:3] splitted = [
"a",
"b",
"d",
"e",
"f",
]
end of line