雅虎管道大师帮助提取字符串并正确输出

发布于 2024-12-19 02:32:27 字数 92 浏览 1 评论 0原文

我想提取一个日期,它是 item.description 中的一个字符串,并将其输出为 item.date

有人可以帮助我吗?

I would like to extract a date which is a string in item.description and the output it as item.date?

Can someone help me?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

陌若浮生 2024-12-26 02:32:27
  • 拉出一个循环并在其中放入一个字符串正则表达式。
  • 选择 item.description 并将结果分配给日期
  • 您在替换框中输入的内容取决于日期的格式。
对于这样的日期:
2010年1月1日
你会放 .*(\d{2})/(\d{2})/(\d{2}).*
对于这样的日期:
2010年1月1日
你会放 .*(\d{2})-(\d{2})-(\d{4}).*
  • 在 with 框中输入 $1/$2/$3
  • Pull out a loop and put a string regex inside it.
  • Choose item.description and assign results to date
  • What you put in the replace box depends on the format of your date.
For dates like this:
01/01/10
you would put .*(\d{2})/(\d{2})/(\d{2}).*
For dates like this:
01-01-2010
you would put .*(\d{2})-(\d{2})-(\d{4}).*
  • in the with box put $1/$2/$3
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文