统计字符串中汉字的个数

字符串可以包括数字、字母、汉字或者其他字符。使用Charater类的isDigit()方法可以判断字符串中的某个字符是否为数字,

使用Character类的isLetter()方法可以判断字符串中的某个字符是否为字母。

本案例将介绍用“正则表达式”来判断字符串中的某个字符是否为汉字,并统计该字符串中汉字的数量。

关键技术:

Java中提供Pattern用于正则表达式的编译方式,该类的静态方法matches()可以执行正则表达式的匹配。该方法的声明如下:

public static boolean matches(String regex,CharSequence)

该方法中,如果CharSequence与regex匹配,则返回true,否则返回false,其中regex表示“正则表达式”,CharSequence表示原字符串。

设计过程:

1)在项目中创建窗体类ChineseAmount。在窗体类中添加用户输入的文本域控件、显示汉字数量的文本框控件和计算汉字数量的“计算汉字”按钮。

2)编写“计算汉字”按钮的事件处理方法。在该方法中获取用户输入的字符串,然后,遍历字符串中的每一个字符,使用正则表达式判断字符是否为汉字,

再根据判断结果对汉字进行计数,最后把计数结果显示到界面文本框中。

关键代码如下:

private void do_button_actionPerformed(ActionEvent e) {
		String text = chineseArea.getText();//获取用户输入
		int amount = 0;//创建统计汉字的计数器
		for (int i = 0; i < text.length(); i++) {//遍历字符串每一个字符
			//使用正则表达式,判断字符是否为汉字编码
			boolean matches = Pattern.matches("^[\u4E00-\u9FA5]{0,}$", ""
					+ text.charAt(i));

			if (matches) {//如果是汉字
				amount++;//则累加
			}
		}
		numField.setText(amount + "");
	}

完整代码如下:

package cn.str.opera;

//import java.awt.BorderLayout;
import java.awt.EventQueue;

import javax.swing.JFrame;
import javax.swing.JPanel;
import javax.swing.border.EmptyBorder;
import javax.swing.JTextArea;
import javax.swing.JLabel;
import javax.swing.JButton;
import javax.swing.JTextField;
import java.awt.event.ActionListener;
import java.awt.event.ActionEvent;
import java.util.regex.Pattern;

public class ChineseAmount extends JFrame {

	private JPanel contentPane;
	private JTextArea chineseArea;
	private JTextField numField;

	/**
	 * Launch the application.
	 */
	public static void main(String[] args) {
		EventQueue.invokeLater(new Runnable() {
			public void run() {
				try {
					ChineseAmount frame = new ChineseAmount();
					frame.setVisible(true);
				} catch (Exception e) {
					e.printStackTrace();
				}
			}
		});
	}

	/**
	 * Create the frame.
	 */
	public ChineseAmount() {
		setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
		setBounds(100, 100, 450, 300);
		contentPane = new JPanel();
		contentPane.setBorder(new EmptyBorder(5, 5, 5, 5));
		setContentPane(contentPane);
		contentPane.setLayout(null);

		chineseArea = new JTextArea();
		chineseArea.setBounds(115, 20, 300, 133);
		contentPane.add(chineseArea);

		JLabel lblNewLabel = new JLabel("\u8F93\u5165\u4E00\u6BB5\u6587\u5B57:");
		lblNewLabel.setBounds(10, 22, 95, 33);
		contentPane.add(lblNewLabel);

		JButton btnNewButton = new JButton("\u8BA1\u7B97\u6C49\u5B57");
		btnNewButton.addActionListener(new ActionListener() {
			public void actionPerformed(ActionEvent e) {
				do_button_actionPerformed(e);
			}
		});
		btnNewButton.setBounds(115, 193, 93, 23);
		contentPane.add(btnNewButton);

		numField = new JTextField();
		numField.setBounds(237, 194, 66, 21);
		contentPane.add(numField);
		numField.setColumns(10);

		JLabel lblNewLabel_1 = new JLabel("\u4E2A\u6C49\u5B57");
		lblNewLabel_1.setBounds(325, 197, 66, 15);
		contentPane.add(lblNewLabel_1);
	}

	private void do_button_actionPerformed(ActionEvent e) {
		String text = chineseArea.getText();//获取用户输入
		int amount = 0;//创建统计汉字的计数器
		for (int i = 0; i < text.length(); i++) {//遍历字符串每一个字符
			//使用正则表达式,判断字符是否为汉字编码
			boolean matches = Pattern.matches("^[\u4E00-\u9FA5]{0,}$", ""
					+ text.charAt(i));

			if (matches) {//如果是汉字
				amount++;//则累加
			}
		}
		numField.setText(amount + "");
	}

}

效果如下:

统计字符串中汉字的个数

时间: 2024-10-14 13:25:40

统计字符串中汉字的个数的相关文章

问题 C: c#统计字符串中数字字符的个数

题目描述 假设有一个GetNumber方法(参数为字符串strSource),编写一个静态方法可以用来统计字符串strSource中数字字符的个数. 输入 输入一个字符串strSource 输出 strSource字符串中数字字符的个数 样例输入 .wrapper {position: relative;} #input {position: absolute;top: 0;left: 0;opacity: 0;z-index: -10;} copy asffkl8asjkfjklas3jdf9

统计字符串中单词的个数

1.单纯统计单词个数,单词与单词之间只考虑空格的情况 // word_statistic.cpp : 定义控制台应用程序的入口点. // #include "stdafx.h" #include <iostream> #include <string> using namespace std; #define M 10000 #define N 20 int _tmain(int argc, _TCHAR* argv[]) { char str1[M]={0};

统计字符串中大写字母个数

可将字符串转为字符数组,然后对数组进行遍历,进而统计大写字母的个数. 下面给出代码: import java.util.Scanner; public class Main { public static void main(String args[]){ Scanner in = new Scanner(System.in); String str = in.nextLine(); int count = 0; char ch[] = str.toCharArray(); //转为字符数组 f

关于统计字符串中重复字符个数

一般使用map集合的键不唯一来统计 map.containsKey(b)//判断map集合键中是否包含b 若果不包含就将b作为键存入集合中值为1 map.put(b,1); 如果键中包含那么键不变,值在原来的基础上加1 map.put(b,map.get(key)+1); 代码展现 for(Character key : keySet){ if(!map.contiansKey(b)){ map.put(b,1); }else{ map.put(b,map.get(key)+1); } }

正则表达式统计字符串中数字的个数

#coding=utf-8import stringimport restr='i have 300 yuan, you 234 234 give me 200 again, then i have 500 yuan'iList= re.findall(r"\d+",str)print "string:",strprint "total digit number:",len(iList) 原文地址:https://www.cnblogs.com/

c语言代码编程题汇总 :统计字符串中的大写和小写字母的个数

统计字符串中的大写和小写字母的个数 程序代码如下: 1 /* 2 2017年3月6日19:42:21 3 功能:统计字符串中的大写和小写字母的个数 4 */ 5 6 #include "stdio.h" 7 void fun (char *,int *,int *); 8 9 int main (void) 10 { 11 int m = 0,n = 0; 12 int *Pm = &m, *Pn = &n; 13 char s[100]; 14 printf (&qu

字符串之“统计一个字符串中单词的个数”

题目:统计一个字符串中单词的个数 输入一行字符,统计其中有多少个单词,单词之间用空格分隔开 输入:my name is jacky 输出:the number of word is 4 代码如下: #include <stdio.h> int main(int argc, char *argv[]) { char str[80]; int i=0,num=0,flag=0; char c; gets(str); while((c=str[i])!='\0') { if(c==' ') flag

统计字符串中数字,字母,空格的个数

这是C语言课后的一道习题,网上可以找到很多相关的代码,都可以很好的基本完成题目要求 但是,我发现很多的代码都无法实现统计字符串中大于10的数字(只局限于统计0-9之间的数字) 此程序可以改进具有十位,百位,千位,甚至更大的数字的统计: #include<stdio.h> int main() { char a[50] ="1 2 3 a b c d @ 15 21 19 88 r 78 100 189 1598 46"; int i,j; int d = 0, c = 0,

java统计字符串中字符及子字符串个数

import java.util.Scanner;public class Counter { static Scanner scanner = new Scanner(System.in); public static void count(String s) { int low, upper, num, others; low = upper = num = others = 0; for (int i = 0; i < s.length(); i++) { if (Character.is