#!/bin/bashK1=WELCOMETOBEIJING
echo$K1K2="WELCOME TO BEIJING"echo$K2
K3="WELCOME TO HENAN"echo$K3K4="HI $K2"echo$K4K5="HELLO $K3 HAVE FUN"echo$K5K6="${K1}HEVE A GOOD TIME"echo$K6K7=$K1echo$K7unset K1
K8=$K1echo$K8
运行结果:
WELCOMETOBEIJING
WELCOME TO BEIJING
WELCOME TO HENAN
HI WELCOME TO BEIJING
HELLO WELCOME TO HENAN HAVE FUN
WELCOMETOBEIJINGHEVE A GOOD TIME
WELCOMETOBEIJING
字符串和切片
切片
切片的作用是允许你引用集合中部分连续的元素序列,而不是引用整个集合。
例如:
let s String::from("hello world");let hello &s[0..5]; // 切片 [0,5) 等效于&s[..5]
let world &s[6..11]; // 切片…