משתמש:מהדורה קמא/בדיקת עוגנים.js: הבדלים בין גרסאות בדף

אין תקציר עריכה
(ניסוי)
אין תקציר עריכה
שורה 19: שורה 19:
       var content = textArea.val();
       var content = textArea.val();


       var anchorRegex = /\{\{(עוגן1?|anchor1?)\|([^}]+)\}/gi;
       var anchorRegex = /\{\{עוגן1\|([^}]+)\}\}/gi;
       var anchors = {};
       var anchors = {};
      // אסוף את כל ההופעות של {{עוגן1|}} ואת הערך שלהן
       var match;
       var match;
       while ((match = anchorRegex.exec(content)) !== null) {
       while ((match = anchorRegex.exec(content)) !== null) {
         var key = match[2].toLowerCase(); // מנרמל את הערכים להשוואה
         var key = match[1].toLowerCase().trim();
         if (!anchors[key]) {
         if (!anchors[key]) {
           anchors[key] = [];
           anchors[key] = [];
         }
         }
         // שמירת מיקום ואורך המופע
         // שמירת מיקום ההופעה
         anchors[key].push({ index: match.index, length: match[0].length });
         anchors[key].push(match.index);
       }
       }


       $.each(anchors, function (key, positions) {
       $.each(anchors, function (key, positions) {
         if (positions.length > 1) {
         if (positions.length > 1) {
          // אם יש יותר מהופעה אחת של אותו ערך
           var counter = 1;
           var counter = 1;
           positions.forEach(function (pos, i) {
           positins.forEach(function (pos) {
             var replacement = `{{עוגן|${key}${counter}|${key}}}`;
             // החלפה של כל הופעה כפולה בתבנית {{עוגן|}}
             content = content.slice(0, pos.index) + replacement + content.slice(pos.index + pos.length);
             content = content.substring(0, pos) + '{{עוגן|' + key + counter + '|' + key + '}}' + content.substring(pos + match[0].length);
             counter++;
             counter++;
           });
           });
שורה 43: שורה 45:
       });
       });


       textArea.val(content); // מעדכן את התוכן בתיבת הטקסט
      // מעדכן את תיבת הטקסט עם השינויים
       textArea.val(content);
       alert('הוחלפו עוגנים כפולים בהצלחה');
       alert('הוחלפו עוגנים כפולים בהצלחה');
     });
     });
   });
   });
});
});