JavaScript String trimStart() 方法



JavaScript String trimStart() 方法从当前字符串的开头(左侧)删除空白字符。它返回一个新字符串,而不修改原始字符串。如果当前字符串的开头没有空格字符,则新字符串与原始字符串相同

要删除两端或仅右端的空格,我们还有其他方法,例如 − trim() trimEnd()

语法

以下是 JavaScript String trimStart() 方法的语法 -


 trimStart()

参数

它不接受任何参数。

返回值

此方法返回一个新字符串,其中从当前字符串的开头(左侧)删除了空格字符。

示例 1

如果当前字符串的开头(左侧)没有空格字符,该方法返回原始字符串不变。


<html>
<head>
<title>JavaScript String trimStart() Method</title>
</head>
<body>
<script>
	 	const str = "Qikepu Com";
	 	document.write("原始字符串: ", str);
	 	document.write("<br>新字符串: ", str.trimStart());
</script> 	 	
</body>
</html>

输出

上面的程序返回 “Qikepu Com”。

原始字符串: Qikepu Com
新字符串: Qikepu Com

示例 2

在此示例中,我们使用 trimStart() 方法删除字符串 “Hello World!” 开头的空格。


<html>
<head>
<title>JavaScript String trimStart() Method</title>
</head>
<body>
<script>
	 	const str = " Hello World! ";
	 	document.write("原始字符串: ", str);
	 	document.write("<br>原始字符串长度: ", str.length);
	 	document.write("<br>新字符串: ", str.trimStart());
	 	document.write("<br>新字符串长度: ", str.trimStart().length);
</script> 	 	
</body>
</html>

输出

执行上述程序后,它从字符串的开头修剪了空格,并返回一个新字符串 “Hello World!”。

原始字符串: Hello World!
原始字符串长度: 14
新字符串: Hello World!
新字符串长度: 13