| | |
| | | |
| | | String s_time = split[0]; |
| | | String e_time = split[split.length - 1]; |
| | | s_time = s_time.substring(s_time.lastIndexOf("-")); |
| | | s_time = s_time.substring(0,s_time.lastIndexOf("-")); |
| | | String[] s1 = e_time.split(" "); |
| | | e_time = s1[0] + " " + s1[1].split("-")[1]; |
| | | SimpleDateFormat sdf1 = new SimpleDateFormat("yyyy-MM-dd HH:mm"); |
| | |
| | | return ResultUtil.success(); |
| | | } |
| | | |
| | | |
| | | public static void main(String[] args) { |
| | | String a ="2023-07-28 10:30-15:30"; |
| | | String substring = a.substring(0,a.lastIndexOf("-")); |
| | | System.out.println(substring); |
| | | } |
| | | /** |
| | | * 课程微信支付 |
| | | * @param paymentPrice |