1. 字符串操作指令strcmp:用于比较字符串内容的异同【例3-6】。字符串比较结果,不相等返回0,相等返回1。

str1 = 'today';

str2 = 'tomorrow';

str3 = 'today';

out1 = strcmp(str1, str2); % 比较字符串str1和str2

out2 = strcmp(str1, str3); % 比较字符串str1和str3

out1的值为0,表示字符串str1和str2不同。

out2的值为1,表示字符串str1和str3相同。