Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想拆分一个字符串并替换一些值。该字符串是一个日期,看起来像这样 '08/26/2009' 我想重新格式化它,以便它用 - 替换 / 使它看起来像这样 '08-26-2009'
字符串被传递到变量 y 中,所以我的行看起来像这样
test = y.split("/") print y
返回这个 ['8', '26', '2009']
我只是不知道如何重新格式化它以在日月和年之间放置破折号。
谢谢迈克
您可以使用替换而不是拆分。
test = y.replace('/', '-');
(假设这是Java)