String Conditions
contains(x): Check if string contains a substring
contains(x): Check if string contains a substringReturns a condition that checks if a string contains a specified substring.
Stream.of(["apple", "banana", "cherry"] \
.filter(contains("na")) \
.for_each(print) # banananot_contains(x): Check if string does not contain a substring
not_contains(x): Check if string does not contain a substringReturns a condition that checks if a string does not contain a specified substring.
Stream.of(["apple", "banana", "cherry"] \
.filter(not_contains("na")) \
.for_each(print) # apple, cherrystarts_with(x): Check if string starts with a substring
starts_with(x): Check if string starts with a substringReturns a condition that checks if a string starts with a specified substring.
Stream.of(["apple", "banana", "cherry"] \
.filter(starts_with("ba")) \
.for_each(print) # bananaends_with(x): Check if string ends with a substring
ends_with(x): Check if string ends with a substringReturns a condition that checks if a string ends with a specified substring.
matches(x): Check if string matches a regular expression pattern
matches(x): Check if string matches a regular expression patternReturns a condition that checks if a string matches a specified regular expression pattern.
not_matches(x): Check if string does not match a regular expression pattern
not_matches(x): Check if string does not match a regular expression patternReturns a condition that checks if a string does not match a specified regular expression pattern.
longer_than(x): Check if string is longer than a specified length
longer_than(x): Check if string is longer than a specified lengthReturns a condition that checks if a string is longer than a specified length.
shorter_than(x): Check if string is shorter than a specified length
shorter_than(x): Check if string is shorter than a specified lengthReturns a condition that checks if a string is shorter than a specified length.
longer_than_or_equal(x): Check if string is longer than or equal to a specified length
longer_than_or_equal(x): Check if string is longer than or equal to a specified lengthReturns a condition that checks if a string is longer than or equal to a specified length.
shorter_than_or_equal(x): Check if string is shorter than or equal to a specified length
shorter_than_or_equal(x): Check if string is shorter than or equal to a specified lengthReturns a condition that checks if a string is shorter than or equal to a specified length.
equal_to_ignore_case(x): Check if string is equal to another string (case-insensitive)
equal_to_ignore_case(x): Check if string is equal to another string (case-insensitive)Returns a condition that checks if a string is equal to another string, ignoring the case.
not_equal_to_ignore_case(x): Check if string is not equal to another string (case-insensitive)
not_equal_to_ignore_case(x): Check if string is not equal to another string (case-insensitive)Returns a condition that checks if a string is not equal to another string, ignoring the case.
contains_ignore_case(x): Check if string contains a substring (case-insensitive)
contains_ignore_case(x): Check if string contains a substring (case-insensitive)Returns a condition that checks if a string contains a specified substring, ignoring the case.
not_contains_ignore_case(x): Check if string does not contain a substring (case-insensitive)
not_contains_ignore_case(x): Check if string does not contain a substring (case-insensitive)Returns a condition that checks if a string does not contain a specified substring, ignoring the case.
starts_with_ignore_case(x): Check if string starts with a substring (case-insensitive)
starts_with_ignore_case(x): Check if string starts with a substring (case-insensitive)Returns a condition that checks if a string starts with a specified substring, ignoring the case.
ends_with_ignore_case(x): Check if string ends with a substring (case-insensitive)
ends_with_ignore_case(x): Check if string ends with a substring (case-insensitive)Returns a condition that checks if a string ends with a specified substring, ignoring the case.
matches_ignore_case(x): Check if string matches a regular expression pattern (case-insensitive)
matches_ignore_case(x): Check if string matches a regular expression pattern (case-insensitive)Returns a condition that checks if a string matches a specified regular expression pattern, ignoring the case.
not_matches_ignore_case(x): Check if string does not match a regular expression pattern (case-insensitive)
not_matches_ignore_case(x): Check if string does not match a regular expression pattern (case-insensitive)Returns a condition that checks if a string does not match a specified regular expression pattern, ignoring the case.
Last updated
Was this helpful?