String Conditions
contains(x): Check if string contains a substring
Returns 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
Returns 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
Returns 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
Returns a condition that checks if a string ends with a specified substring.
matches(x): Check if string matches a regular expression pattern
Returns 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
Returns 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
Returns 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
Returns 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
Returns 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
Returns 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)
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)
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)
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)
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)
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)
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)
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)
Returns a condition that checks if a string does not match a specified regular expression pattern, ignoring the case.
Last updated