在实际的开发工作中,对字符串的处理是最常见的编程任务。本题目即是要求程序对用户输入的串进行处理。具体规则如下:
1. 把每个单词的首字母变为大写。
2. 把数字与字母之间用下划线字符(_)分开,使得更清晰
3. 把单词中间有多个空格的调整为1个空格。
例如:
用户输入:
you and me what cpp2005program
则程序输出:
You And Me What Cpp_2005_program
用户输入:
this is a 99cat
则程序输出:
This Is A 99_cat
我们假设:用户输入的串中只有小写字母,空格和数字,不含其它的字母或符号。每个单词间由1个或多个空格分隔。
假设用户输入的串长度不超过200个字符。
要求考生把所有类写在一个文件中。调试好后,存入与考生文件夹下对应题号的“解答.txt”中即可。相关的工程文件不要拷入。请不要使用package语句。
另外,源程序中只能出现JDK1.5中允许的语法或调用。不能使用1.6或更高版本。
实现实例:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
|
import java.util.ArrayList; import java.util.Scanner; //you and me what cpp2005program //则程序输出: //You And Me What Cpp_2005_program public class Main { public static void main(String[] args){ String x = new Scanner(System.in).nextLine(); combineStr(x); } public static void combineStr(String x){ //获取处理后的数据集合 ArrayList<String> list = repair(x); //用于判断数字的字符串 String intStr = "0123456789" ; //获取每个字符串进行字符的拼接转换 String result = "" ; for ( int i= 0 ;i<list.size();i++){ //取出一个字符 String temp = list.get(i); //初始化结果值 result = temp; //进行数字与字母的判断 for ( int k= 0 ;k<temp.length()- 1 ;k++){ if (intStr.indexOf(temp.charAt(k))!=- 1 && intStr.indexOf(temp.charAt(k+ 1 ))==- 1 ){ // 此时判断条件为数字 // 8a 返回替换后的字符,原字符不变 result = result.replace(temp.substring(k, k+ 2 ), (temp.charAt(k)+ "_" +temp.charAt(k+ 1 ))); } else if (intStr.indexOf(temp.charAt(k))==- 1 && intStr.indexOf(temp.charAt(k+ 1 ))!=- 1 ){ //字母数字 result = result.replace(temp.substring(k, k+ 2 ), (temp.charAt(k)+ "_" +temp.charAt(k+ 1 ))); } } System.out.print(result+ " " ); } } //获取用户输入的,去掉重复的空白符 public static ArrayList<String> repair(String x){ //保存首字符转为大写后的单词 ArrayList<String> list = new ArrayList<String>(); //用于判断数字的字符串 String intStr = "0123456789" ; String[] arr = x.split( " " ); for ( int i= 0 ;i<arr.length;i++){ if (!arr[i].equals( "" )){ //对每一个字符进行判断 if ( intStr.indexOf(arr[i].charAt( 0 ))==- 1 ){ // 对应的字符为字母而不是数字,==-1表示没有找到数字,则为字母 String newString = (arr[i].charAt( 0 )+ "" ).toUpperCase()+arr[i].substring( 1 ); list.add(newString); } else { list.add(arr[i]); } } } return list; } } |
以上就是java 字符串拼接的实例,如有疑问请留言或者到本站社区交流讨论,感谢阅读,希望能帮助到大家,谢谢大家对本站的支持!
原文链接:http://sunzone.iteye.com/blog/1898645