Appian Community and Appian Academy are being upgraded. As a part of the upgrade, Appian Community is currently in read-only mode, and user registration is disabled until August 3. We apologize for any inconvenience this may cause, but a more secure, stable, and performant Community experience is coming soon!
The new Appian Community launches August 3, followed by Appian Academy on August 7. During the migration, Appian Community Edition, Appian Academy, Documentation, Certifications, Instructor-led Customer Training, Partner Sales Training & Accreditation, and Forum (for Appian Partners and Customers only) will remain available.
Hello,
Is there a way to check case sensitivity on the value I pass in?
Also, is there any other way to check the data type of the value?For example,
1) Want to check if the value corresponding to the date type is actually using the date type correctly? 2) Want to check whether the value corresponding to the string type uses only uppercase letters, only lowercase letters, and whether special symbols are combined.
Thank you.
Discussion posts and replies are publicly visible
Yes. That is possible. You can use the regex as Stefan said but you can also build logic with the native SAIL code itself.
For eg. To check for the upper case characters, you can use the code function. For checking the date, you can split it on the required character (/,.,-) and then check the value of individual indexes in that array.