gpt4 book ai didi

regex - 如何检查字符串是否包含http ://at the start

转载 作者:行者123 更新时间:2023-12-04 16:14:57 27 4
gpt4 key购买 nike

我希望能够检查一个字符串,以查看它是否在开始处带有http://,以及是否不添加它。

if (regex expression){
string = "http://"+string;
}

有人知道要使用的正则表达式吗?

最佳答案

如果您不需要正则表达式来执行此操作(具体取决于您使用的语言),则只需查看字符串的初始字符即可。例如:

// C#
if (!str.StartsWith("http://"))
str = "http://" + str;

// Java
if (!str.startsWith("http://"))
str = "http://" + str;

// JavaScript/TypeScript
if (str.substring(0, 7) !== 'http://')
str = 'http://' + str;

关于regex - 如何检查字符串是否包含http ://at the start,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/1395943/

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