如何判断URL首字母是否小于G?
我希望根据网站的 URL 来回显链接列表。我想知道您是否可以创建一个 if/else 来根据站点域的第一个字母回显不同的列表。所以基本上,如果域以 G 之前的任何字母开头,它会回显我的第一个列表,如果它是 G 之后的任何字母,它会回显其他内容。
I am looking to echo a list of links based on the URL of a website. I was wondering if you could create an if/else to echo different lists based on the first letter of the domain of a site. So basically, if the domain starts with any letter before G, it would echo my first list, and if it is any letter after G, it would echo something else.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(6)
我的正则表达式解决方案:
My RegEx solution:
试试这个:
Try this:
对于您的情况
for your case
只是一个想法:
just an idea:
您可以使用
ord()
将字符转换为其 ascii 值:You can convert a character to its ascii-value using
ord()
: