SoFunction
Updated on 2025-03-03

You can only enter real numbers or integers in the text box, and other characters are invalid. I'm sorry, everyone!

There are two very important special characters in regular expressions, which are "[ ]". They can match characters that appear in "[]", such as "/[az]/" which can match a single character "a" or "z"; if the above expression is changed to "/[a-z]/", they can match any single lowercase letter, such as "a", "b", etc.
2011-09-09