Love beautiful code? We do too.
split() trong JavaScript chia một đối tượng String thành một mảng các chuỗi bởi việc chia chuỗi thành các chuỗi phụ.
Cú pháp của nó như sau:
string.split([separator][, limit]);
Chi tiết về tham số
Trả về giá trị
<html>
<head>
<title>JavaScript String split() Method</title>
</head>
<body>
<script type="text/javascript">
var str = "Apples are round, and apples are juicy.";
var splitted = str.split(" ", 3);
document.write( splitted );
</script>
</body>
</html>
Kết quả
Apples,are,round,
Hoclaptrinh.vn © 2017
From Coder With
Unpublished comment
Viết câu trả lời