作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我希望用更好的不太详细的过程替换以下函数,用于从字符串确定数字月份值。有谁知道是否有可用于此目的的日期/日期时间函数?我没有注意到任何一个可以满足我的需求。
代码中的文本字符串正是我接收它们的方式。
预先感谢您的帮助。
private static Integer convertMonthTextToNumber(String matrixMonth){
if(matrixMonth == 'January'){
return 1;
}else if(matrixMonth == 'February'){
return 2;
}else if(matrixMonth == 'March'){
return 3;
}else if(matrixMonth == 'April'){
return 4;
}else if(matrixMonth == 'May'){
return 5;
}else if(matrixMonth == 'June'){
return 6;
}else if(matrixMonth == 'July'){
return 7;
}else if(matrixMonth == 'August'){
return 8;
}else if(matrixMonth == 'September'){
return 9;
}else if(matrixMonth == 'October'){
return 10;
}else if(matrixMonth == 'November'){
return 11;
}else{
return 12;
}
}
最佳答案
这个怎么样:
private static Map<String, Integer> monthsMap = new Map<String, Integer>{
"January" => 1,
"February" => 2,
etc.
};
private static Integer convertMonthTextToNumber(String month)
{
return monthsMap.get( month );
}
关于date - Apex/Salesforce : Get Numeric Month Value From String Representation of Month,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18213808/
我是一名优秀的程序员,十分优秀!