Custom Functions

icon picker
Boolean Functions

Last edited 80 days ago by MyCondy
Text inside "<>" character should be replaced by your real data.

Check if text contains number

If(IsMatch(<Text input>,Match.Digit,MatchOptions.Contains),false,true)

Check if text contains upper cases

If(IsMatch(<Text input>,"[A-Z]",MatchOptions.Contains),false,true)

Check if text contains special chars

If(IsMatch(<Text input>,".*[^a-zA-Z0-9_].*"),false,true)

Want to print your doc?
This is not the way.
Try clicking the ⋯ next to your doc name or using a keyboard shortcut (
CtrlP
) instead.