String with Kotlin

kotlin中字符串的使用........


fun main(args: Array<String>) {
    val str="May the force be with you"
    println(str)
    
    val rawCrawl="""|hellooooooooooooo
    |A long time ago,
    |far,far,far...
    |bommmmm mmmmmm mmmmmm""".trimMargin()  //去除字符|前的空格
    println(rawCrawl)
    
    val contentEqual=str.contentEquals("May the force be with you")//字符串比较函数
    println(contentEqual)//true
    
    val contains=str.contains("with",true)//对字符串中是否具有“with”做出判断
    println(contains)//true
    
    val uppercase=str.toUpperCase()//字符串中字母转换成大写
    val lower=str.toLowerCase()//字符串中字母转换成小写、
    println(uppercase+lower)
    
    val subSequence=str.subSequence(4,13)//获取字符串中字母区间
    println(subSequence)
    
    val name="dpl"
    println("My name is $name")//EL表达式
}

运行结果:

May the force be with you
hellooooooooooooo
A long time ago,
far,far,far...
bommmmm mmmmmm mmmmmm
true
true
MAY THE FORCE BE WITH YOUmay the force be with you
the force
My name is dpl

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值