javascript 在 . (点)
我无法读取正则表达式。
假设我们有这个字符串:“mydomain.bu.pu”,我想抓取其中的“.bu.pu”部分;
我正在考虑使用类似的东西:
indexOf 和后来的 substr ...但我承认我有点迷失了......
请问有什么帮助吗? :D
预先感谢, MEM
I'm unable to read regex.
Let's say we have this string: "mydomain.bu.pu" and I want to grab the ".bu.pu" part of it;
I'm thinking about using something like:
indexOf and later substr ... But I confess I'm kind of lost...
Any help please? :D
Thanks in advance,
MEM
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(6)
上面的答案包括字符串中的点。如果您只想要点后面的内容:
The above answers include the dot in the string. If you only want what's after the dot:
那应该可以解决问题。
That should do the trick.
这是我所知道的三种简单方法。
Here is the three simple way I know.
SixCommaTwoValidation 用于数字 6,2 验证和限制的方法。
sixCommaTwoValidation method for numeric 6,2 validation and restiction.
也许现在考虑已经太晚了,但是这段代码对我使用 jquery 来说工作得很好
您可以将 '_' 重新镀为 '.'
maybe this is too late to consider, but this codes works fine for me using jquery
You could just replate '_' to '.'