gpt4 book ai didi

date - Apex/Salesforce : Get Numeric Month Value From String Representation of Month

转载 作者:行者123 更新时间:2023-12-02 21:53:13 26 4
gpt4 key购买 nike

我希望用更好的不太详细的过程替换以下函数,用于从字符串确定数字月份值。有谁知道是否有可用于此目的的日期/日期时间函数?我没有注意到任何一个可以满足我的需求。

代码中的文本字符串正是我接收它们的方式。

预先感谢您的帮助。

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/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com