flutter String 字符串常用的方法
摘要:
连接字符串: String test='hello'; String c_test='world'; c_test='${test} ${c_test}!'// hello world! //检查c_test 是否以 !结尾 bool b=c_test.endsWith('!')// b=true 阅读全文
posted @ 2023-07-18 10:37 hztech 阅读(480) 评论(0) 推荐(0) 编辑