分割/重新格式化字符串

发布于 2024-11-29 06:37:17 字数 278 浏览 0 评论 0原文

我想分割一个字符串并替换一些值。该字符串是一个日期,看起来像这样 '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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

痴骨ら 2024-12-06 06:37:17

您可以使用替换而不是拆分。

test = y.replace('/', '-');

(假设这是Java)

You can use replace instead of split.

test = y.replace('/', '-');

(assuming this is Java)

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文