admin管理员组文章数量:1344506
How can I out if a string only contains a certain set of characters: {
A-Z
and }
?
For example
{VARIABLE}
=> should return true{VARiABLE}
=> should be false, because there's a lowercasei
inside{ VARIABLE}
=> should be false because there's a space etc.
Oh, very important:
the string MUST have at least one character between {
and }
, so:
{}
should be false too...
How can I out if a string only contains a certain set of characters: {
A-Z
and }
?
For example
{VARIABLE}
=> should return true{VARiABLE}
=> should be false, because there's a lowercasei
inside{ VARIABLE}
=> should be false because there's a space etc.
Oh, very important:
the string MUST have at least one character between {
and }
, so:
{}
should be false too...
-
1
Should the format also always be
{...}
? – pimvdb Commented Jul 14, 2011 at 14:51 - pmvdb yes, I forgot to mention that, tx: P – Alex Commented Jul 14, 2011 at 14:53
7 Answers
Reset to default 6In that case use:
/^{[A-Z]+}$/.test(str);
The regexp represents any string of the format:
- First a
{
- Then one or more capital letters
- Then a
}
The ^...$
makes sure that the string should be exactly of this form, rather than a substring only (otherwise test{AAA}
would match too).
This sounds like a good case to use regular expressions. In particular, regexes allow one to match a range of characters - [A-Z{}]
would match any character which is either an uppercase letter, {
, or }
.
EDIT based on new requirements - you want to match something that starts with a literal {
, then has at least one character in the range A-Z
, then a closing }
. Which gives the regex:
{[A-Z]+}
Thus you could match against the entire regex:
val input = "{VARIABLE}"
return input.test(/{[A-Z]+}/) // returns true
"{VARiABLE}".test(/{[A-Z]+}/) // returns false
"{ VARIABLE}".test(/{[A-Z]+}/) // returns false
"".test(/{[A-Z]+}/) // returns false - open bracket didn't match
"{}".test(/{[A-Z]+}/) // returns false - A-Z part didn't match
Use this regex: ^[A-Z{}]+$
. It allows only A-Z
and {}
Do a negative regex match. If you match something like /[^A-Z{}]/
and get a success, then the string contains something that's "not allowed".
Try this regex...
/^[{}A-Z]+$/
/^[{}A-Z]+$/.test("{VARIABLE}") // => true
Use this expression.
[A-Z{}]*
Here the square brackets [] insist on what characters to be present and * says that this patter can repeat multiple times.
Jquery Code:
$(document).ready( function(){
$('#test_regex').click( function(){
regex= /^{[A-Z]+}$/;
str= $('#reginput').val();
result= regex.test(str);
if( result ){
alert("It's the correct value, yes it's right");
}else{
alert("It's incorrect value.. You know");
}
});
});
HTML Code:
<input type="text" id="reginput"/>
<button id="test_regex">Check Value</button>
It will return alert("It's the correct value, yes it's right"), if value is {UPPERCASELETTERS}
本文标签: javascriptFind out if a string is made up with a certain set of charactersStack Overflow
版权声明:本文标题:javascript - Find out if a string is made up with a certain set of characters - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743749448a2532372.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论