excel中如何把年月日时分秒如:20191009053020分成两列
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了excel中如何把年月日时分秒如:20191009053020分成两列相关的知识,希望对你有一定的参考价值。
excel中如何把年月日时分秒如:20191009053020分成两列 20191009和053020?
如数据在A1,必须为文本格式,否则不能完整显示,日期用公式:=TEXT(LEFT(A1,8),"0000-00-00"),
时间用公式:=SUBSTITUTE(TEXT(RIGHT(A1,6),"00-00-00"),"-",":"),
这样就能转为日期和时间格式,当然上面的还是文本,可以在公式前加上“--”,然后再设置单元格格式为日期和时间格式。 参考技术A 方法一:使用left函数
假设原数据在A列,结果要分别显示在B列和C列,B1=left(A1,8) C1=substitute(A1,B1,)或者=right(A1,6)
方法二:直接使用分列功能,固定长度。本回答被提问者采纳
iOS年月日时分秒选择器
FQDateTimeSDK
iOS年月日、时分秒选择器。
在原生控件的基础上增加秒
的选择,和原生PickerView一样的丝滑。
功能介绍
- 支持年月日模式
- 支持时分秒模式
- 支持年月日时分秒模式
- 支持默认时间和最大、最小时间
- 支持标题的设置,默认为空
- 目前不支持UI自定义
集成方式
手动集成
- 把项目
clone
或Download ZIP
到本地 - 把项目内的
FQDateTimeSDK.framework
拖到你的项目里
- 设置
Embed&Sign
cocoaPods自动集成
这里默认大家对cocoaPods都是信手拈来的
- 在Podfile引入
pod 'FQDateTimeSDK'
- 在终端 cd 到你的项目根路径
pod install
使用案列
- 在用到时间选择器的地方引用头文件
#import <FQDateTimeSDK/FQDateTimeSDK.h>
- 遵循代理
FQDateTimePickerViewDelegate
@interface ViewController ()<FQDateTimePickerViewDelegate>
@end
- 实现代理方法
//点击确定事件
- (void)doneActionWithTime:(nonnull NSString *)time {
NSLog(@"time==%@", time);
}
//滚动事件
- (void)scrollActionWithTime:(nonnull NSString *)time {
NSLog(@"time==%@", time);
}
- 年月日选择器
FQDateTimePickerView *picker = [[FQDateTimePickerView alloc] initWithFQDateTimePickerModel:FQDateTimePickerModelDate];
picker.title = @"FQDateTime";
picker.delegate = self;
picker.minDate = [NSDate new];
[picker show];
- 时分秒选择器
FQDateTimePickerView *picker = [[FQDateTimePickerView alloc] initWithFQDateTimePickerModel:FQDateTimePickerModelTime];
picker.delegate = self;
picker.maxDate = [NSDate new];
[picker show];
- 年月日时分秒选择器
FQDateTimePickerView *picker = [[FQDateTimePickerView alloc] initWithFQDateTimePickerModel:FQDateTimePickerModelDateTime];
picker.delegate = self;
picker.maxDate = [NSDate new];
[picker show];
以上是关于excel中如何把年月日时分秒如:20191009053020分成两列的主要内容,如果未能解决你的问题,请参考以下文章