JakeP's Accepted Solutions

Sure, the expression I used in vCAC for my text box was: ([a-z,A-Z,0-9]{1,5}) The first part of the expression [a-z,A-Z,0-9] states that the letters A-Z can be used, lower or upper case, as we... See more...
Sure, the expression I used in vCAC for my text box was: ([a-z,A-Z,0-9]{1,5}) The first part of the expression [a-z,A-Z,0-9] states that the letters A-Z can be used, lower or upper case, as well as the numbers 0-9. The second section {1,5} controls the length, as the entry must be between 1 and 5 characters total to validate. If you plug it in to the site I mentioned above you can test your expression and how it evaluates. Hope that helps. -Jake
Thanks, I considered using that, but wanted to learn the process anyway in case I need to do it with another property at some point. I was able to find the answer here: Re: How to update vCAC VM ... See more...
Thanks, I considered using that, but wanted to learn the process anyway in case I need to do it with another property at some point. I was able to find the answer here: Re: How to update vCAC VM name from BuildingMachine workflow