博客列表 >js--字符串操作函数

js--字符串操作函数

意外的博客
意外的博客原创
2019年03月31日 13:12:16791浏览
<!DOCTYPE html>
<html>
<head>
	<title>字符串操作函数</title>
	<mate charest="utf-8">	<!-- 设置编码格式,以免乱码; -->
		<script type="text/javascript">
		
			var text='hello worid i like you';
			// length:计算字符串长度;
				// document.write(text.length);
			// charAt(数字):返回指定索引位置的字符。
				// document.write(text.charAt(0));
			//indexOf();获取子字符串索引开始位置;
				// document.write(text.indexOf('i'))
			//lastIndexOf();指出最后一个子字符串开始的位置;
				// document.write(text.lastIndexOf('k'))
			// substring(开始,结束);返回一个子字符串;
				// document.write(text.substring(2,3));
			// substr(开始,长度);返回一个子字符串;
				// document.write(text.substr(2,3));
			// replace('要的字被替换符串','替换成的字符串');
				// document.write(text.replace('you','php中文网'));	
			// concat();连接两个或多个字符串;
				// var a='你的名字'	;
				// var b='luxiansheng';
				// 	document.write(text.concat(' ',a,' ',b));
				
		</script>
</head>
<body>

</body>
</html>


<!-- length:计算字符串长度; -->
<!-- charAt(数字):返回指定索引位置的字符。 -->

总结:

声明:本文内容转载自脚本之家,由网友自发贡献,版权归原作者所有,如您发现涉嫌抄袭侵权,请联系admin@php.cn 核实处理。
全部评论
文明上网理性发言,请遵守新闻评论服务协议