码迷,mamicode.com
首页 > 其他好文 > 详细

split应用

时间:2018-12-12 23:46:40      阅读:245      评论:0      收藏:0      [点我收藏+]

标签:length   []   highlight   int   sys   split   class   tostring   stat   

/*
 	input:"5 35 53 2 3"
 	output:"2 3 5 35 53"
 */
public class RegexDemo4 {
	public static void main(String[] args) {
		String str = "5 35 53 2 3";
		System.out.println(stringSort(str));
	}
	
	public static String stringSort(String str) {
		String[] s = str.split(" ");
		int[] arr = new int[s.length];
		for(int i = 0;i<s.length;i++) {
			arr[i] = Integer.parseInt(s[i]);
		}
		Arrays.sort(arr);
		StringBuffer sb = new StringBuffer();
		for(int i = 0;i<arr.length;i++) {
			sb.append(arr[i]).append(" ");
		}
		
		return sb.toString();
	}
}

  

split应用

标签:length   []   highlight   int   sys   split   class   tostring   stat   

原文地址:https://www.cnblogs.com/duy666/p/10111512.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!