A method for realizing the number of specific characters in a statistical string _javascript tips

Source: Internet
Author: User

This article illustrates the method of the number of specific characters appearing in the data string of JS implementation. Share to everyone for your reference, specific as follows:

The number of specific characters contained in the JS statistics string
function Getplaceholdercount (strsource) {
  //statistics string contains {} or {XxXX} number
  var thiscount = 0;
  Strsource.replace (/\{[xx]+\}|\{\}/g, function (M, i) {
    //m for found {XX} element, I is index
    thiscount++;
  });
  return thiscount;
}

PS: Here again for you to recommend a very convenient statistical tool:

Online Word Count tool:
Http://tools.jb51.net/code/zishutongji

More readers interested in JavaScript-related content can view this site: "JavaScript in the JSON Operation tips Summary", "JavaScript switching effects and techniques summary", "JavaScript Search Algorithm Skills summary", " JavaScript animation effects and tips Summary, "JavaScript Error and debugging skills Summary", "JavaScript data structure and algorithm skills summary", "JavaScript traversal algorithm and Skills summary" and "JavaScript Mathematical operation Usage Summary"

I hope this article will help you with JavaScript programming.

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.