Count the number of English letters, spaces, numbers, and other characters in a string

Source: Internet
Author: User
1 package demo; 2 Import Java. util. break; 3/** 4 * count the numbers of English letters, spaces, numbers, and other characters in a string. 5 */6 public class statistics1 {7 public static void main (string [] ARGs) {8 int I; 9 int lettercount = 0; 10 int spacecount = 0; 11 int numbercount = 0; 12 INT othercount = 0; 13 14 // enter a string of 15 bytes in = new bytes (system. in); 16 system. out. println ("enter a string:"); 17 string STR = in. nextline (); 18 19 // string to character array 20 char [] CH = Str. tochararray (); 21 for (I = 0; I <Str. length (); I ++) {22 if (character. isletter (CH [I]) {23 lettercount ++; 24} else if (character. isspacechar (CH [I]) {25 spacecount ++; 26} else if (character. isdigit (CH [I]) {27 numbercount ++; 28} 29 else {30 othercount ++; 31} 32} 33 34 system. out. println ("the number of characters is:" + lettercount); 35 system. out. println ("number of spaces:" + spacecount); 36 system. out. println ("number:" + numbercount); 37 system. out. println ("other characters:" + othercount); 38} 39}

 

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.