xxxxxxxxxx
<html>
<body>
<script>
// وضعنا فيه نص عادي text المتغير
let text = 'There are seven days in the week.';
// أول جزئية يتم إيجادها index سيوضع فيه رقم result المتغير
// 'e' و يليه حرفين 'w' تبدأ بحرف text في نص المتغير
let result = text.search(/we{2}/);
// لا يساوي 1- فهذا يعني أنه تم إيجاد الكلمة في النص result إذا كان رقم المتغير
if (result != -1) {
// هنا سيتم طباعة عبارة تعني أنه تم إيجاد تطابق
document.write('The word "week" match the pattern.');
}
else {
// هنا سيتم طباعة عبارة أنه لم يتم إيجاد تطابق
document.write('No match found!');
}
</script>
</body>
</html>