【String类型】JavaScript中的原生对象以及Microsoft AJAX Library中的相关扩展

Microsoft AJAX Library中对String原生类型的扩展


• 字符串与String对象
• String.prototype. …
 – length:获得字符串长度
 – charAt(pos):获得当前位置的字符(串)
 – indexOf(str, position):查找字符串
 – lastIndexOf(str, position):从后查找字符串
 – match(regexp):使用正则表达式检验字符串
 – replace(search, replaceValue):替换字符串
 – search(regexp):在字符串搜索某个子串
 – toUpperCase():将字符串转化为大写
 – toLowerCase():将字符串转化为小写


• split(str):分割字符串至数组
• substring(start[, end])
 –得到子字符串
 –从下标start开始,到下标end-1为止
 –如果没有提供end
• slice方法
 –与substring方法功能几乎相同
 –如果start小于零,则表示倒数第n位(start + length),end亦是如此。
• String.prototype. …
 – endsWith:返回布尔值,表明是否以某字符串结尾
 – startsWith:返回布尔值,表明是否以某字符串
开始
 –trim:返回字符串,去处原字符串首尾空白
 –trimEnd:返回字符串,去处原字符串结尾空白
 –trimStart:返回字符串,去处原字符串起始空白


• String.format(format, arg1[, arg2[, arg3…]]
 – Stirng.format("{0}…", obj, …)
 – String.format("{0:format}…", obj, …)
 –如果需要保留大括号则使用双括号
• String.format(“{{0}}”, obj, …) = “{0}”
• String.localeFormat(…)
 –除format方法的功能之外,提供与当前语言环境相关的字符串转化功能

扩展实例:

aspx页面

<asp:ScriptManager ID="ScriptManager1" runat="server" EnableScriptGlobalization="true" />
		
		<div id="info"></div>
		<script language="javascript" type="text/javascript">
			function display(text)
			{
				document.getElementById("info").innerHTML += (text + "<br />");
			}

			display(String.format("Today is {0}.", new Date()));
			display(String.localeFormat("今天是{0:dddd}", new Date()));
		</script>


 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值