本文解答了关于《原始凭证的分类》相关内容,同时关于1、原始凭证的分类依据及其进一步分类,2、原始凭证的分类,3、原始凭证的分类依据有哪些分别能分为哪些类型,4、原始凭证的分类具体包括哪些,5、原始凭证的分类和内容,的相关问答本篇文章福途教育网小编也整理了进来,希望对您有帮助。
原始凭证的分类
public static String[] classify(Map map,String template){
String[] result = new String[map.size()];
String tmp;
int i=0,begin,end;
for(String key:map.keySet()){
begin = template.indexOf("{");
end = template.indexOf("}");
tmp = template.substring(0,begin);
tmp+=key;
tmp+=template.substring(end+1);
result[i++] = tmp;
}
return result;
}
public static void main(String[] args){
HashMap map = new HashMap<>();
map.put("张三",1);
map.put("李四",2);
map.put("王五",3);
String template = "报销{}的旅费";
String[] RES = classify(map,template);
for(int i=0;i System.out.println(RES[i]);
}
}
}
总结:以上是编辑:【谷一峻】整理及AI智能原创关于《原始凭证的分类
》优质内容解答希望能帮助到您。