jQuery - 第一个非字母数字后的拼接?
我正在尝试合并一个splice
,以便它测试两件事:
- 字符不能超过20个,删除其余的
- 它在第一个非字母数字处停止,删除其余的?
我该怎么做呢?例如
var string = 'Special Place Co. (123 ABC)'
所以这将返回
'Special Place Co' [found '.'并在拼接后移除]
谢谢
I am trying to incorporate a splice
such that it tests for 2 things:
- Characters cannot be longer than 20, removes the rest
- It stops at the first non-alpha-numerical, removes the rest ?
How would I go about doing this ? i.e. for example
var string = 'Special Place Co. (123 ABC)'
So this would return
'Special Place Co' [found '.' and removed spliced after]
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这是适合您的代码:
http://jsfiddle.net/U5ZtU/
Here is a code that will work for you:
http://jsfiddle.net/U5ZtU/