Please enable JavaScript.
Coggle requires JavaScript to display documents.
Conditions, and, or (%x=2), xor, if (%x=2), if not, if regex - Coggle…
Conditions
and
%x=2
?x>1
?x<3
true
else
false
else
false
or
%x=2
?x>1
x is 1 or 0
?x=2
x is 2
?x>3
x is greater then 3
xor
%x=2
?x<5
next
?x>3
false
else
true
?x>3
next
true
if
%x=2
?x=2
true
else
false
if not
%x=2
!x=2
true
else
false
if regex
%input=Перевірка
match
/[а-яА-Я\s]+/ %input
cyrilic input found
else
cyrilic input NOT found