• 首页 首页 icon
  • 工具库 工具库 icon
    • IP查询 IP查询 icon
  • 内容库 内容库 icon
    • 快讯库 快讯库 icon
    • 精品库 精品库 icon
    • 问答库 问答库 icon
  • 更多 更多 icon
    • 服务条款 服务条款 icon

字符串拆分并获取第一次和最后一次出现

用户头像
it1352
帮助1

问题说明

我有一长串ISO日期:

I have a long string of ISO dates:

var str = "'2012-11-10T00:00:00.000Z', '2012-11-11T00:00:00.000Z', ****  '2013-11-12T00:00:00.000Z'";

我只需要获取第一个和最后一个日期。我能做到

I need to get the first and last dates only. I could do

var vStr = str.split(',');
vStr[0] and vStr[vStr.length - 1]

但这是浪费记忆,因为我只需要第一次和最后一次出现。想法?谢谢。

But it's a waste memory, because I only need the first and last occurrences. Ideas? Thanks.

正确答案

#1

如果你真的从大型阵列中遇到性能问题(不要'过早优化),您可以使用 slice 提取单个字符串和 indexOf / lastIndexOf 找到他们的职位:

If you're really getting a performance problem from the large array (dont' optimize prematurely), you could use slice to extract the single strings and indexOf/lastIndexOf to find their positions:

str.slice(0, str.indexOf(','))
and
str.slice(str.lastIndexOf(',') 1) // 1==','.length

这篇好文章是转载于:学新通技术网

  • 版权申明: 本站部分内容来自互联网,仅供学习及演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系,请提供相关证据及您的身份证明,我们将在收到邮件后48小时内删除。
  • 本站站名: 学新通技术网
  • 本文地址: /reply/detail/tanhchahce
系列文章
更多 icon
同类精品
更多 icon
继续加载