The regex [a#z]+ matches one or more lowercase letters from a to z. The plus sign (+) indicates that the preceding character set [a#z] can appear one or more times, thus matching strings of only lowercase letters1. References := This explanation is consistent with standard regex syntax as described in various programming and scripting languages documentation