将日期和时间列转换为日期列

Covert a days and time column into days colum

我有一列 TRM_LENGTH,其中包含我想从此列中提取天数的值 365天05:49:12.000000000

您可以使用正则表达式:

import re

source = '365 days 05:49:12.000000000'
pattern = r'^(\d+)'
match = re.search(pattern, source)
year = match.group(0)
print(year)

您可以使用正则表达式

(\d+) days

Demo link