I would like to have a simple ternary operator in the variables section, ie an IF THEN ELSE shorthand function. That would make it easier to do stuff like this (just pseudo code):
IF some string contains 'x'
THEN return the string
ELSE
return ''
In ternary notation it would be something like this :
String.Contain('x') ? String : ''
Edited by moderator
2017-06-30T09:46:41Z
|
Reason: Not specified