编写一个函数将字符串转为驼峰结构。例如main-action-holder,转换结果为mainActionHolder

一道面试题:编写一个函数将字符串转为驼峰结构。例如main-action-holder,转换结果为mainActionHolder

package com.julong;

import org.apache.commons.lang3.StringUtils;

import java.io.File;

/**
 * @author julong
 * @date 2020/4/23 22:30
 * @desc
 */
public class Test {
    public static void main(String[] args) {
//        File file = new File("D:\\logs");
//       getFile(file);
        String str = "main-action-holder";
//        System.out.println( str.indexOf("-"));
//        int index =  str.indexOf("-");
//        if (index > 0){
//           String findStr =  str.substring(index,index+2);
//            str = str.replaceFirst(findStr,findStr.toUpperCase().replace("-", ""));
//            System.out.println(str);
//        }
        String result = getName1(str);
        System.out.println("替换结果:"+result);
    }

    /**
     * 第三题
     * @param file
     * @return void
     * @author julong
     * @date 2020年04月23日 23:02:03
     * @desc 使用Java代码或伪代码列出一个目录下所有的文件,包括所有子目录下的文件,并分别打印出所有文件和目录的数量
     */
    public static void getFile(File file){
        if(file.isDirectory()){
            System.out.println(file.listFiles().length);
            for (int i = 0; i  0){
            String findStr =  str.substring(index,index+2);
            str = str.replaceFirst(findStr,findStr.toUpperCase().replace("-", ""));
            System.out.println(str);
            return getName1(str);
        }
        return str;
    }

}

 

你可能感兴趣的:(java)