JavaScript で単語全体の検索を実行する方法
JavaScript の search() メソッドを使用して単語全体を一致させるには、通常のメソッドを使用します。で示される単語境界で目的の単語を区切る表現パターンb.
実装例:
const lookup = '\n\n\n\n\n\n2 PC Games \n\n\n\n'; const textbox = document.getElementById('textbox'); // Trim whitespace from 'lookup' for accurate matching lookup = lookup.trim(); // To perform a dynamic search based on 'lookup', utilize a dynamic regular expression const regex = new RegExp("\b" + lookup + "\b"); // Test the regex against the value of the 'textbox' if (regex.test(textbox.value)) { // Handle success case: word found as a whole word } else { // Handle failure case: word not found as a whole word }
追加メモ:
以上がJavaScript を使用して単語全体のみを検索するにはどうすればよいですか?の詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。