c语言字符串变量的比较,C/C++知识点之lr中用C语言比较两个字符串变量

本文主要向大家介绍了C/C++知识点之lr中用C语言比较两个字符串变量,通过具体的内容向大家展示,希望对大家学习C/C++知识点有所帮助。

以下脚本,定义两个一样的字符数组,对比后,打印出result的值:

Action()

{

int result;

char string1[] = "We can see the string:nancy";

char string2[] = "We can see the string:nancy";

lr_output_message("the string1 is %s.",string1);

lr_output_message("the string2 is %s.",string2);

result = strcmp(string1,string2);

if ( result == 0 )

{

lr_output_message("the result is 0.");

}

else

{

lr_output_message("the result is not 0.");

}

return 0;

}

运行结果:

Ending action vuser_init.Running Vuser...Starting iteration 1.Starting action Action.Action.c(7): the string1 is We can see the string:nancy.Action.c(8): the string2 is We can see the string:nancy.Action.c(12): the result is 0.Ending action Action.Ending iteration 1.Ending Vuser...Starting action vuser_end.Ending action vuser_end.Vuser Terminated.

代码2:

Action()

{

int result;

char string1;

char string2;

lr_save_string( "We can see the string:nancy","string1" );

lr_save_string( "We can see the string:nancy","string2" );

lr_output_message("the string1 is %s.",lr_eval_string("{string1}"));

lr_output_message("the string1 is %s.",lr_eval_string("{string2}"));

result = strcmp(lr_eval_string("{string1}"),lr_eval_string("{string2}"));

if ( result == 0 )

{

lr_output_message("the result is 0.");

}

else

{

lr_output_message("the result is not 0.");

}

return 0;

}

运行结果:

Ending action vuser_init.Running Vuser...Starting iteration 1.Starting action Action.Action.c(9): the string1 is We can see the string:nancy.Action.c(10): the string1 is We can see the string:nancy.Action.c(14): the result is 0.Ending action Action.Ending iteration 1.Ending Vuser...Starting action vuser_end.Ending action vuser_end.Vuser Terminated.

本文由职坐标整理并发布,希望对同学们有所帮助。了解更多详情请关注职坐标编程语言C/C+频道!

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值