Love beautiful code? We do too.
Phương thức String search() trong JavaScript thực thi một sự tìm kiếm cho sự so khớp giữa một Regular Expression và đối tượng String này.
Cú pháp của nó như sau:
string.search(regexp);
Chi tiết về tham số
Trả về giá trị
<html>
<head>
<title>JavaScript String search() Method</title>
</head>
<body>
<script type="text/javascript">
var re = /apples/gi;
var str = "Apples are round, and apples are juicy.";
if ( str.search(re) == -1 ){
document.write("Does not contain Apples" );
}
else
{
document.write("Contains Apples" );
}
</script>
</body>
</html>
Kết quả
Contains Apples
Hoclaptrinh.vn © 2017
From Coder With
Unpublished comment
Viết câu trả lời