Appian Community
Site
Search
Sign In/Register
Site
Search
User
DISCUSS
LEARN
SUCCESS
SUPPORT
Documentation
AppMarket
More
Cancel
I'm looking for ...
State
Suggested Answer
Replies
11 replies
Answers
2 answers
Subscribers
10 subscribers
Views
8596 views
Users
0 members are here
Share
More
Cancel
Related Discussions
Home
»
Discussions
»
AI and Rules
The Appian folder names cannot contain any of the following characters: \\ / ; :
shaoyongw
over 9 years ago
The Appian folder names cannot contain any of the following characters: \\ / ; : “ | ? ’ > < *
Any suggestion for the validation on sail form?
OriginalPostID-143897
OriginalPostID-143897
Discussion posts and replies are publicly visible
Top Replies
Steve
over 9 years ago
+1
Define a rule, isInvalidFilename as; fn!stripwith(ri!stringToTest,"\\/;:“|?’><*") <> ri!stringToTest and then; validations: {if(rule!isInvalidFilename(yourfilename),"Invalid filename",{})}
Parents
0
ENOSH EZEKIEL
A Score Level 1
over 9 years ago
This can be achieved with the help of Regex functions available in Shared Components:
forum.appian.com/.../
Create an input of type text, = if(
regexmatch(
"^[a-zA-Z][a-zA-Z\\\\s]+$",
ri!aa
) = true(),
{},
"Enter only Alphabets"
)
This should suffice!
Cancel
Vote Up
0
Vote Down
Sign in to reply
Verify Answer
Cancel
Reply
0
ENOSH EZEKIEL
A Score Level 1
over 9 years ago
This can be achieved with the help of Regex functions available in Shared Components:
forum.appian.com/.../
Create an input of type text, = if(
regexmatch(
"^[a-zA-Z][a-zA-Z\\\\s]+$",
ri!aa
) = true(),
{},
"Enter only Alphabets"
)
This should suffice!
Cancel
Vote Up
0
Vote Down
Sign in to reply
Verify Answer
Cancel
Children
No Data