分割/重新格式化字符串
我想分割一个字符串并替换一些值。该字符串是一个日期,看起来像这样 '08/26/2009' 我想重新格式化它,以便它用 - 替换 / ,这样它看起来像这样 '08-26-2009'
该字符串被传递到一个变量中y,所以我的行看起来像这样
test = y.split("/")
print y
return this ['8', '26', '2009']
我只是不知道如何重新格式化它以将破折号放在日月和年之间。
谢谢 麦克风
I want to split a string and replace some values. The string is a date that looks like this '08/26/2009' I want to reformat it so that it replaces the / with a - so that it looks like this '08-26-2009'
The string is passed into a variable y, so my line looks like this
test = y.split("/")
print y
return this ['8', '26', '2009']
I just can't figure out how to reformat it to place the dash between the day month and year.
Thanks
Mike
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用替换而不是拆分。
(假设这是Java)
You can use replace instead of split.
(assuming this is Java)