Power Automate 関数一覧
-
Boolean
StartsWith(
String 検索語句,
String 検索対象,
Boolean 大文字小文字を無視
)
-
指定された文字列が検索対象の先頭にあるか否か。
-
Boolean
NotStartsWith(
String 検索語句,
String 検索対象,
Boolean 大文字小文字を無視
)
-
指定された文字列が検索対象の先頭にないか否か。
-
Boolean
EndsWith(
String 検索語句,
String 検索対象,
Boolean 大文字小文字を無視
)
-
指定された文字列が検索対象の末尾にあるか否か。
-
Boolean
NotEndsWith(
String 検索語句,
String 検索対象,
Boolean 大文字小文字を無視
)
-
指定された文字列が検索対象の末尾にないか否か。
-
Boolean
Contains(
String 検索語句,
String 検索対象,
Boolean 大文字小文字を無視
)
-
指定された文字列が検索対象に含まれているか否か。
-
Boolean
NotContains(
String 検索語句,
String 検索対象,
Boolean 大文字小文字を無視
)
-
指定された文字列が検索対象に含まれていないか否か。
-
Boolean
IsEmpty(
String 検索対象
)
-
検索対象が空文字列か否か。
-
Boolean
IsNotEmpty(
String 検索対象
)
-
検索対象が空でない文字列か否か。
Source: Variable manipulation and the % notation - Power Automate | Microsoft Learn
Last Update 2025-02-21, made with GPT-4o