jQuery - 第一个非字母数字后的拼接?

发布于 2024-12-19 16:47:09 字数 266 浏览 1 评论 0原文

我正在尝试合并一个splice,以便它测试两件事:

  1. 字符不能超过20个,删除其余的
  2. 它在第一个非字母数字处停止,删除其余的?

我该怎么做呢?例如

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:

  1. Characters cannot be longer than 20, removes the rest
  2. 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

红墙和绿瓦 2024-12-26 16:47:09

这是适合您的代码:

var string = 'Special Place Co. (123 ABC)';


if (string.length > 20) {
  string = string.substr(0,20);   
}

string = string.replace(/([a-zA-Z0-9 ]+)(.*)/,'{$1}');


console.log(string);

http://jsfiddle.net/U5ZtU/

Here is a code that will work for you:

var string = 'Special Place Co. (123 ABC)';


if (string.length > 20) {
  string = string.substr(0,20);   
}

string = string.replace(/([a-zA-Z0-9 ]+)(.*)/,'{$1}');


console.log(string);

http://jsfiddle.net/U5ZtU/

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文