JSPを使用して大文字と小文字を区別せずに、入力文字列に指定された部分文字列が含まれているかどうかを確認するにはどうすればよいですか?
fn:containsIgnoreCase() 関数は、入力文字列に指定された部分文字列が含まれているかどうかを判別します。検索を実行している間、ケースは無視されます。
構文
fn:containsIgnoreCase() 関数の構文は次のとおりです-
boolean containsIgnoreCase(java.lang.String, java.lang.String)
例
以下は、 fn:containsIgnoreCase()の機能を説明する例です。 関数-
<%@ taglib uri = "https://java.sun.com/jsp/jstl/core" prefix = "c" %> <%@ taglib uri = "https://java.sun.com/jsp/jstl/functions" prefix = "fn" %> <html> <head> <title>Using JSTL Functions</title> </head> <body> <c:set var = "theString" value = "I am a test String"/> <c:if test = "${fn:containsIgnoreCase(theString, 'test')}"> <p>Found test string<p> </c:if> <c:if test = "${fn:containsIgnoreCase(theString, 'TEST')}"> <p>Found TEST string<p> </c:if> </body> </html>
次の結果が表示されます-
Found test string Found TEST string
-
PHP 8 – str_contains()を使用して、文字列に部分文字列が含まれているかどうかを確認します
PHP 8では、 str_contains 関数は、文字列のどこかに特定の部分文字列が含まれているかどうかを判別します。 str_contains 関数は、最初の文字列が2番目の文字列に含まれているかどうかを確認し、文字列が見つかったかどうかに基づいてtrue/falseブール値を返します。それは自明の機能です。 str_contains(string $haystack, string $needle): bool 例1:PHP8str_contains関数。 <?php if (str_contains('great reading t
-
文字列が回文であるかPythonを使用していないかを確認する方法は?
Pythonの標準ライブラリのreveresed()関数を使用します。リストオブジェクトに変換できる反転オブジェクトを返します >>> str1='malayalam' >>> l1=list(reversed(str1)) >>> l1 ['m', 'a', 'l', 'a', 'y', 'a', 'l', 'a', 'm'] join()メソッドを使用してリスト内のすべての文字