Following on from my earlier post: -
here's a simpler version of my function: -
fn main() {
for part in "docker.io/davidhay1969/hello-world-nginx:latest".split(&['/', ':'][..]) {
println!("{}", part);
}
}
where I'm splitting the container image name: -
docker.io/davidhay1969/hello-world-nginx:latest
So when I create this on my Mac: -
vi hello.rs
fn main() {
for part in "docker.io/davidhay1969/hello-world-nginx:latest".split(&['/', ':'][..]) {
println!("{}", part);
}
}
and compile it: -
rustc hello.rs
and run it: -
./hello
docker.io
davidhay1969
hello-world-nginx
latest
Nice
PS Thanks to How can I split a string (String or &str) on more than one delimiter?
No comments:
Post a Comment