gpt4 book ai didi

javascript - 使用字符串

转载 作者:行者123 更新时间:2023-11-30 07:45:56 26 4
gpt4 key购买 nike

如果我有一个字符串包含

abc: def - 01:00, ghi - 02:00

这个字符串的任何部分都可以改变,除了字符串中分隔符的顺序,即 :, -, :, -:

如何获取第一个 : 之前的文本并将其粘贴到变量中供以后使用?

另外,我如何获取第一个 - 之间的文本, 并将其粘贴到不同的变量中?

最佳答案

How do I get the text before the first : and stick it into a variable for later use?

var text = 'abc: def - 01:00, ghi - 02:00',
firstChunk = text.substring(0, text.indexOf(':'));
// firstChunk is "abc"

And also, how do I get the text between the first - and , and stick that into a different variable?

var secondChunk = text.substring(text.indexOf('-') + 1, text.indexOf(','));
// secondChunk is " 01:00"

字符串函数引用:

关于javascript - 使用字符串,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6344467/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com