You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Names can include numbers or symbols. Improve the current test expression (just testing that lenght is <50) to exclude these cases:
@(if(text_length(results.input)<=50,"v","i"))
to exclude that the name is a number only we can use @(if(and(!number(results.input),(text_length(results.input)<=50)),"v","i"))
The text was updated successfully, but these errors were encountered:
Names can include numbers or symbols. Improve the current test expression (just testing that lenght is <50) to exclude these cases:
@(if(text_length(results.input)<=50,"v","i"))
to exclude that the name is a number only we can use @(if(and(!number(results.input),(text_length(results.input)<=50)),"v","i"))
The text was updated successfully, but these errors were encountered: