I am trying to pull a single character out of a value and wondered if this could be done without Regex. For example, if I have the word “TEST”, I would like to set a conditional to only show the 3rd character. I want to be able to extract a letter from a value at a precise location. Thanks!
EDIT. I do believe I can accomplish this with the Regex with /.{3}/ but was curious if the functionality existed.