gpt4 book ai didi

vbscript - 检查字符串 "starts with"是否是另一个字符串

转载 作者:行者123 更新时间:2023-12-04 00:41:41 26 4
gpt4 key购买 nike

我想检查一个地址是否以 http://www.youtube.com 开头.
如果我有这样的事情

if rs("mainVideoName")="http://www.youtube.com*" then
这不起作用,那么我该怎么做?

最佳答案

尝试这个:

 Function UrlStartsWith(string1, string2)
UrlStartsWith = InStr(1, string1, string2, 1) = 1
End Function

If UrlStartsWith(rs("mainVideoName"), "http://www.youtube.com") Then


End If

开始使用 IntStr 进行测试并确保它返回 1 作为找到搜索字符串的起始位置。由于您正在测试 URL,因此上面的代码使用 TextCompare 来区分大小写。

关于vbscript - 检查字符串 "starts with"是否是另一个字符串,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10427537/

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