Can someone please explain to me what and how the “ignore case” in the if node works?
1 Like
@Rexell_23 while comparing two strings, if “ignore case” is enabled only the given strings will be compared and the case(upper or lower) will be ignored.
For example, let’s assume str_a = “yellow.ai”, str_b=“Yellow.ai”
When “ignore case” is enabled condition node will consider both str_a and str_b as the same strings.
On the hand, when “ignore case” is disabled condition node will consider both strings as different strings.
Hope this helps! Please feel free to drop a comment below in case you need help further.