値が次のいずれかの形式をチェックするかどうかを確認したい:..A , B.. , A..B
また、値を取得します。(null, A) , (B, null) , (A, B)
これは私のコードです:
var regexRange = new RegExp("^([a-zA-Z0-9]+)\.\.([a-zA-Z0-9]*)$|^[a-zA-Z0-9]*\.\.([a-zA-Z0-9]+)$");
function getRangeValues(value) {
var from = null;
var to = null;
var matches = regexRange.exec(value);
if (matches !== null) {
if (matches[3] !== undefined) {
to = matches[3];
}
else if(matches[1]!==undefined && matches[1]!=='') {
from = matches[1];
if (matches[2] !== undefined && matches[2] !== '') {
to = matches[2];
}
}
}
var range = { From: from, To: to };
return range;
}
Value: 1233 => From=12, To=null
なぜこの間違った動作が発生するのかわかりません。他の使用例ではうまくいくようです。