最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

javascript - Regex to match if no space is found - Stack Overflow

programmeradmin0浏览0评论

I have this:

^.*(?!.*[^\S])(?=.*[a-zA-Z]).*$

And this does not match if the string has a space at the end.

I'm trying to make it so that it matches only if the string does not have a space anywhere, not just at the end. How can I do this?

I have this:

^.*(?!.*[^\S])(?=.*[a-zA-Z]).*$

And this does not match if the string has a space at the end.

I'm trying to make it so that it matches only if the string does not have a space anywhere, not just at the end. How can I do this?

Share Improve this question asked Feb 27, 2014 at 22:33 user773737user773737 4
  • Can you trim leading/trailing spaces before you check the regex? – Joe W Commented Feb 27, 2014 at 22:34
  • 4 How about simply: ^[\S]+$ ? – Bryan Elliott Commented Feb 27, 2014 at 22:36
  • !/\s/g.test("YOUR STRING"); – Benjamin Gruenbaum Commented Feb 27, 2014 at 22:36
  • 1 @MElliott This works. You can get more points if you officially answer the question – user773737 Commented Feb 27, 2014 at 22:37
Add a ment  | 

2 Answers 2

Reset to default 7

How about simply:

^[\S]+$

Working regex example:

http://regex101./r/yA6xU3

Simplest expression to match a non-empty string with no blank characters:

^\S+$
发布评论

评论列表(0)

  1. 暂无评论