I've tried this construction
Code: Select all
if
· Core.ToBoolean
· result
· [ifTrue]
· [ifFalse]
- i need something to convert strings into false when it's empty string or void, but into true, when it's not empty string.
Code: Select all
if
· Core.ToBoolean
· result
· [ifTrue]
· [ifFalse]
Code: Select all
function (text)
not
· String.IsMatch
· "^$"
· text
Code: Select all
function (text)
not
· String.IsMatch
· "^\\s*$"
· text
Code: Select all
if
· StringHasValue
· result
· [ifTrue]
· [ifFalse]