SORU
24 EKİM 2010, Pazar


Nasıl dize dize geçtiği saymak için?

Kaç kez sayısını ben belirli bir dizenin başka bir dize içinde oluşur. Örneğin, bu Javascript ile yapmaya çalışıyorum

var temp = "This is a string.";
alert(temp.count("is")); //should output '2'

CEVAP
24 EKİM 2010, Pazar


var temp = "This is a string.";

// the g in the regular expression says to search the whole string 
// rather than just find the first occurrence
var count = (temp.match(/is/g) || []).length;

alert(count);

Bunu Paylaş:
  • Google+
  • E-Posta
Etiketler:

YORUMLAR

SPONSOR VİDEO

Rastgele Yazarlar

  • MrSuicideSheep

    MrSuicideShe

    9 NİSAN 2010
  • MysteryGuitarMan

    MysteryGuita

    16 HAZİRAN 2006
  • Samvith V Rao

    Samvith V Ra

    20 EKİM 2006