Skip to Content (Press Enter)
OutSystems.com
Personal Edition
Community
Support
Training
Training
Online Training
Developer Schools
Boot Camps
Certifications
Tech Talks
Documentation
Documentation
Overview
ODC
O11
Forums
Forge
Get Involved
Get Involved
Jobs
Ideas
Members
Mentorship
User Groups
Platform
Platform
ODC
O11
Search in OutSystems
Log in
Get Started
Back to Forums
Skipx
97
Views
2
Comments
Solved
Ascii code of text
Discussion
How-to
Hello,
I would like to know if there is a function to convert text to ascii, and if not what the best way to achiev it.
What I'm trying to do is: see if a ToUpper(character) is between A and Z ascii codes.
Thank in advance,
Pedro Barros
João Batista
Staff
Solution
You can also do it with a Regex extension, and check for the following regex:
"^[A-Z]+$"
See solution in context
Skipx
I wasnt very hopefull but
"A" <=
ToUpper(character) and
ToUpper(character) <= "Z"
seems to do the trick.
João Batista
Staff
Solution
You can also do it with a Regex extension, and check for the following regex:
"^[A-Z]+$"
Community Guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting.
See the full guidelines
Loading...