javascript アルファベットの大文字小文字の区別をせずに指定した文字が含まれているかを判定する
- 作成日 2022.07.12
- javascript
- javascript
javascriptで、アルファベットの大文字小文字の区別をせずに指定した文字が含まれているかを判定するサンプルコードを掲載してます。ブラウザはchromeを使用しています。
環境
- OS windows10 pro 64bit
- Apache 2.4.43
- ブラウザ chrome 103.0.5060.114
大文字小文字の区別をしない
大文字小文字の区別をせずに判定するは、「正規表現」を使用します。
/検索文字/i.test(文字列)
実際に判定してます。
let str = 'mebee';
console.log( /BE/i.test(str) ) // true
console.log( /bE/i.test(str) ) // true
console.log( /be/i.test(str) ) // true
また、「includes」や「indexOf」は大文字小文字を区別した上で判定されます。
console.log( str.includes('BE') ) // false
console.log( str.indexOf('BE')!=-1 ) // false
console.log( str.includes('be') ) // true
console.log( str.indexOf('be')!=-1 ) // true
サンプルコード
以下は、
「実行」ボタンをクリックした際に、指定した文字列「mebee」と、ファーム入力された文字列を、
大文字小文字の区別をつけずに判定した結果を表示するサンプルコードとなります。
※cssには「tailwind」を使用して、アロー関数で関数は定義してます。
<!DOCTYPE html>
<html lang="ja">
<head>
<meta charset="utf-8">
<title>mebeeサンプル</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<script src="https://cdn.tailwindcss.com"></script>
</head>
<script>
window.onload = () => {
btn.onclick = () => {
foo.innerHTML = new RegExp(txt.value,'i').test('mebee');
}
}
</script>
<body>
<div class="container mx-auto my-56 w-64 px-4">
<div id="sample" class="flex flex-col justify-center">
<h1 class="font-semibold text-sky-500 text-lg mr-auto">実行結果</h1>
<p id="foo" class="font-semibold text-lg mr-auto"></p>
<input
class="mb-2 shadow appearance-none border rounded w-full py-2 px-3 text-gray-700 leading-tight focus:outline-none focus:shadow-outline"
id="txt" type="txt">
<button id="btn"
class="mb-2 md:mb-0 bg-transparent hover:bg-sky-500 text-sky-700 font-semibold hover:text-white py-2 px-4 border border-sky-500 hover:border-transparent rounded">
実行
</button>
</div>
</div>
</body>
</html>
実行結果を確認すると、結果が表示されていることが確認できます。
-
前の記事
windows リモートディスクトップ接続中にPCのパスワードを変更する 2022.07.11
-
次の記事
Linux ファイル同士の差分を抽出する 2022.07.12
コメントを書く