3

这可能是一个棘手的问题。使用正则表达式,我想在括号之间选择阿拉伯数字(可以是 1、2 或 3 个阿拉伯数字)以及括号本身:http: //jsfiddle.net/QL4Kr/

<span>
    كهيعص ﴿١﴾
</span>
<span>
    وَإِلَيْهِ تُرْ‌جَعُونَ ﴿٢٤٥﴾
</span>​
jQuery(function () {    
    var oldHtml = jQuery('span').html();
    var newHtml = oldHtml.replace("","");
    jQuery('span').html(newHtml); });​
4

1 回答 1

3

这是我想出的:

jQuery(function() {

    /* Arabic digits representation in Unicode
       See: http://stackoverflow.com/a/1676590/114029 */
    var myregex = /[\u0660-\u0669]+/;

    $('span').each(function(index) {

        var text = $(this).text();

        var matches = text.match(myregex);

        alert(index + ': ' + $(this).text());

        alert(matches);

    });

});

这是使用它的 jsFiddle:http: //jsfiddle.net/leniel/YyAXP/


这是修改后的版本,仅保留 each 中的数字<span>

jQuery(function() {

    var myregex = /[\u0660-\u0669]+/;

    $('span').each(function(index) {

        var text = $(this).text();

        $(this).text('');

        var matches = text.match(myregex);

        $(this).text(matches); 

    });

});

jsFiddle:http: //jsfiddle.net/leniel/YyAXP/1/


为了纠正误解,这里有一个完全符合您要求的新版本:

jQuery(function() {

    var myregex = /[﴾\u0660-\u0669﴿]+/;

    $('span').each(function(index) {

        var text = $(this).text();

        $(this).text('');

        var matches = text.match(myregex);

        var content = text.replace(myregex, '');

        //alert(content);
        //alert(index + ': ' + $(this).text());
        //alert(matches);

        var newSpan = document.createElement('span');

        $(newSpan).text(matches);

        $(this).text(content);

        $(newSpan).prependTo($(this));
    });
});

对应的jsFiddle在这里:http: //jsfiddle.net/leniel/YyAXP/2/


我希望这是您最后的要求更改!:-)

var myregex = /([\u0660-\u0669]+)/g;

var parenthesis = /[﴾﴿]+/g;

var text = $("#sentences");

//alert(content);
//var matches = $(text).text().match(myregex);
//alert(text.html());

text.html(function(i, oldHTML) {

    return oldHTML.replace(parenthesis, '').replace(myregex, '<span>$1</span>');
});

这是 jsFiddle:http: //jsfiddle.net/leniel/G4SkV/4/

于 2012-10-17T15:48:56.760 回答