Split A Rust String Into Individual Characters
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 --