私の最終目標は、入力フィールドを検証することです。入力は、アルファベットまたは数値のいずれかです。
私の最終目標は、入力フィールドを検証することです。入力は、アルファベットまたは数値のいずれかです。
回答:
私が間違っていないのであれば、質問には「数である」ではなく「数を含む」が必要です。そう:
function hasNumber(myString) {
return /\d/.test(myString);
}
これは、javascriptを使用して行うことができます。JqueryやRegexは不要
function isNumeric(n) {
return !isNaN(parseFloat(n)) && isFinite(n);
}
実装中
var val = $('yourinputelement').val();
if(isNumeric(val)) { alert('number'); }
else { alert('not number'); }
更新:文字列に数字が含まれているかどうかを確認するには、正規表現を使用してそれを行うことができます
var matches = val.match(/\d+/g);
if (matches != null) {
alert('number');
}
matches != null
手段ではないundefined
か、null
しばらくmatches !== null
、具体的な手段ではないnull
が、パスundefined
。
match()
配列またはを返しますnull
。だから、if (matches !== null)
問題ないはずです(そしてそれはJSHintを喜ばれます。)出典:developer.mozilla.org/en/docs/Web/JavaScript/Reference/...
isFinite(parseFloat(n))
最初の例にあるはずです。isNumeric("5,000")
失敗します。
isFinite()
渡された値がfinite
数値であり、数値5,000
が有限数ではなく数値のフォーマットされた文字列である場合、trueを返します。
isNaN
ですか?パースフロートを削除するisNaN
か、追加してisFinite
構成することをお勧めします。
使用してJavaScriptで正規表現を。正規表現は、検索パターンを説明するための特別なテキスト文字列で、/ pattern / modifiersの形式で記述されます。「pattern」は正規表現自体であり、「modifiers」はさまざまなオプションを示す一連の文字です。
文字クラスはリテラル試合後の最も基本的な正規表現のコンセプトです。これにより、1つの小さな文字シーケンスがより大きな文字セットと一致します。たとえば、大文字のアルファベットを表すことができ、
[A-Z]
\d
表し、任意の数字を意味します。
以下の例から
contains_alphaNumeric
«文字列が文字または数字(または)文字と数字の両方を含むかどうかをチェックします。ハイフン( - )は無視されます。onlyMixOfAlphaNumeric
«文字列がシーケンス順の文字と数字の両方を含むかどうかをチェックします。例:
function matchExpression( str ) {
var rgularExp = {
contains_alphaNumeric : /^(?!-)(?!.*-)[A-Za-z0-9-]+(?<!-)$/,
containsNumber : /\d+/,
containsAlphabet : /[a-zA-Z]/,
onlyLetters : /^[A-Za-z]+$/,
onlyNumbers : /^[0-9]+$/,
onlyMixOfAlphaNumeric : /^([0-9]+[a-zA-Z]+|[a-zA-Z]+[0-9]+)[0-9a-zA-Z]*$/
}
var expMatch = {};
expMatch.containsNumber = rgularExp.containsNumber.test(str);
expMatch.containsAlphabet = rgularExp.containsAlphabet.test(str);
expMatch.alphaNumeric = rgularExp.contains_alphaNumeric.test(str);
expMatch.onlyNumbers = rgularExp.onlyNumbers.test(str);
expMatch.onlyLetters = rgularExp.onlyLetters.test(str);
expMatch.mixOfAlphaNumeric = rgularExp.onlyMixOfAlphaNumeric.test(str);
return expMatch;
}
// HTML Element attribute's[id, name] with dynamic values.
var id1 = "Yash", id2="777", id3= "Yash777", id4= "Yash777Image4"
id11= "image5.64", id22= "55-5.6", id33= "image_Yash", id44= "image-Yash"
id12= "_-.";
console.log( "Only Letters:\n ", matchExpression(id1) );
console.log( "Only Numbers:\n ", matchExpression(id2) );
console.log( "Only Mix of Letters and Numbers:\n ", matchExpression(id3) );
console.log( "Only Mix of Letters and Numbers:\n ", matchExpression(id4) );
console.log( "Mixed with Special symbols" );
console.log( "Letters and Numbers :\n ", matchExpression(id11) );
console.log( "Numbers [-]:\n ", matchExpression(id22) );
console.log( "Letters :\n ", matchExpression(id33) );
console.log( "Letters [-]:\n ", matchExpression(id44) );
console.log( "Only Special symbols :\n ", matchExpression(id12) );
出力:
Only Letters:
{containsNumber: false, containsAlphabet: true, alphaNumeric: true, onlyNumbers: false, onlyLetters: true, mixOfAlphaNumeric: false}
Only Numbers:
{containsNumber: true, containsAlphabet: false, alphaNumeric: true, onlyNumbers: true, onlyLetters: false, mixOfAlphaNumeric: false}
Only Mix of Letters and Numbers:
{containsNumber: true, containsAlphabet: true, alphaNumeric: true, onlyNumbers: false, onlyLetters: false, mixOfAlphaNumeric: true}
Only Mix of Letters and Numbers:
{containsNumber: true, containsAlphabet: true, alphaNumeric: true, onlyNumbers: false, onlyLetters: false, mixOfAlphaNumeric: true}
Mixed with Special symbols
Letters and Numbers :
{containsNumber: true, containsAlphabet: true, alphaNumeric: false, onlyNumbers: false, onlyLetters: false, mixOfAlphaNumeric: false}
Numbers [-]:
{containsNumber: true, containsAlphabet: false, alphaNumeric: false, onlyNumbers: false, onlyLetters: false, mixOfAlphaNumeric: false}
Letters :
{containsNumber: false, containsAlphabet: true, alphaNumeric: false, onlyNumbers: false, onlyLetters: false, mixOfAlphaNumeric: false}
Letters [-]:
{containsNumber: false, containsAlphabet: true, alphaNumeric: true, onlyNumbers: false, onlyLetters: false, mixOfAlphaNumeric: false}
Only Special symbols :
{containsNumber: false, containsAlphabet: false, alphaNumeric: false, onlyNumbers: false, onlyLetters: false, mixOfAlphaNumeric: false}
正規表現によるjavaパターンマッチング。
必要に応じて適合させるために、任意の文字が過剰でなく❓であるかどうかをテストする。
const s = "EMA618"
function hasInt(me){
let i = 1,a = me.split(""),b = "",c = "";
a.forEach(function(e){
if (!isNaN(e)){
console.log(`CONTAIN NUMBER «${e}» AT POSITION ${a.indexOf(e)} => TOTAL COUNT ${i}`)
c += e
i++
} else {b += e}
})
console.log(`STRING IS «${b}», NUMBER IS «${c}»`)
if (i === 0){
return false
// return b
} else {
return true
// return +c
}
}
hasInt(s)
これは、javascriptを使用して行うことができます。JqueryやRegexは不要
function isNumeric(n) {
if(!isNaN(n))
{
return true
}
else
{
return false
}
}
function isNumeric(n) { return !isNaN(n); }
このコードは、「指定された文字列内の数値を検出するには」数値が検出されたときに実行を停止するのにも役立ちます。
function hasDigitFind(_str_) {
this._code_ = 10; /*When empty string found*/
var _strArray = [];
if (_str_ !== '' || _str_ !== undefined || _str_ !== null) {
_strArray = _str_.split('');
for(var i = 0; i < _strArray.length; i++) {
if(!isNaN(parseInt(_strArray[i]))) {
this._code_ = -1;
break;
} else {
this._code_ = 1;
}
}
}
return this._code_;
}
parseInt
文字列が整数の表現で始まる場合、整数を提供します。
(parseInt '1a') is 1
..たぶん:
isInteger = (s)->
s is (parseInt s).toString() and s isnt 'NaN'
(isInteger 'a') is false
(isInteger '1a') is false
(isInteger 'NaN') is false
(isInteger '-42') is true
私のCoffeeScriptを許してください。