عمومي خاصية

إرجاع القيمة منطقية تشير إلى الولاية إشارة عمومي ( g ) استخدام تعبير عادي.

rgExp.global

الوسيطات

  • rgExp
    مطلوبة. مثيل كائن تعبير عادي.

ملاحظات

globalالخاصية هو القراءة فقط، ويرجع صحيحاً إذا إشارة العمومي هو تعيين التعبير العادي، خاطئة إذا هو لا. The القيمة افتراضية هو خطأ.

The عمومي يؤشر, when used, indicates that a بحث should بحث الكل occurrences of the نقش within the searched سلسلة, not just the أول واحد. This هو also known كـ عمومي matching.

مثال

يوضح المثال التالي استخدم globalخاصية. If you pass g في إلى the دالة shown below, الجميع instances of the الكلمة "the" are replaced مع the الكلمة "a". ملاحظة that the "The" at the beginning of the سلسلة ليس replaced because the i (تجاهل حالة) يؤشر ليس passed إلى the دالة.

This دالة displays the منطقي قيم that are associated مع the allowable عادي تعبير علامات, which are g, i, و m. The دالة also displays the سلسلة مع الجميع استبدلات made.

function RegExpPropDemo(flag){
    // The flag parameter is a string that contains
    // g, i, or m.  The flags can be combined.

    // Check flags for validity.
    if (flag.match(/[^gim]/))
        {
        return ("Flag specified is not valid");
        }

    // Create the string on which to perform the replacement.
    var orig = "The batter hit the ball with the bat ";
    orig += "and the fielder caught the ball with the glove.";

    // Replace "the" with "a".
    var re = new RegExp("the", flag);
    var r = orig.replace(re, "a");        

    // Output the resulting string and the values of the flags.
    print ("global: " + re.global.toString());
    print ("ignoreCase: " + re.ignoreCase.toString());
    print ("multiline: " + re.multiline.toString());
    print ("Resulting String: " + r);
}

RegExpPropDemo("g");

ما يلي هو إخراج الناتج.

global: true
ignoreCase: false
multiline: false
Resulting String: The batter hit a ball with a bat and a fielder caught a ball with a glove.

المتطلبات

Version 5.5

يتم تطبيق إلى:

كائن تعبير عادي

راجع أيضًا:

المرجع

ignoreCase خاصية

خاصية متعدد الأسطر

المبادئ

بناء جملة تعبير عادي