码迷,mamicode.com
首页 > 其他好文 > 详细

C#语言基础知识(4):C#中的String.Format方法

时间:2014-07-09 22:39:53      阅读:249      评论:0      收藏:0      [点我收藏+]

标签:数据   for   res   re   c#   c   

定义
String.Format是将指定的String类型的数据中的每个格式项替换为相应对象的值的文本等效项.
(1)
string p1="xiaomeng";
string p2="xiaobei";
Response.Write(String.Format("Hello {0},I‘m {1}",p1,p1));
(2)
Response.Write(String.Format("Hello {0},I‘m {1}","xiaomeng","xiaobei"));
这两种的效果是一样的.但是将后面的两项值分别替换第一项的{0}和{1}.
输出结果:Hello xiaomeng,I‘m xiaobei.

C#语言基础知识(4):C#中的String.Format方法,布布扣,bubuko.com

C#语言基础知识(4):C#中的String.Format方法

标签:数据   for   res   re   c#   c   

原文地址:http://www.cnblogs.com/liubeimeng/p/3829742.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!