在线时间:8:00-16:00
迪恩网络APP
随时随地掌握行业动态
扫描二维码
关注迪恩网络微信公众号
字符串转换函数 abs 字符串到ASCII转换
matlab字符串拼接 假定有两个字符串 >> str1='Iloveyou';str2='123'; 方法一:用中括号将str1和str2像矩阵元素一样包含起来: >> SC=[str1,str2] SC = Iloveyou123 (若想验证str1和str2确实被连接起来,可调用length函数测试SC的长度。) 方法二:用strcat函数 >> SB=strcat(str1,str2) SB = Iloveyou123 注意,strcat函数有许多用法,如下例: >> strcat({'Red','Yellow'},{'Green','Blue'}) ans = 'RedGreen' 'YellowBlue' 但下句则结果就不一样了: >> strcat(['Red','Yellow'],['Green','Blue']) ans = RedYellowGreenBlue 方法三:利用sprintf函数 >> number=123; >> STR=sprintf('%s%d',str1,number) STR = Iloveyou123 利用class(STR)得到STR的类型为char。 |
2023-10-27
2022-08-15
2022-08-17
2022-09-23
2022-08-13
请发表评论