How do you make a regular expression to match any number of any single char?
So for example, i match a expression for any single letter or digit. i want to match a double of the first character found.
i.e "ee" in "free"
and "oo" in "loop"
and "mm" in "summer"
using regex.
i.e "ee" in "free"
and "oo" in "loop"
and "mm" in "summer"
using regex.
1
person has this question
I have this question, too!
Tell me when someone answers.
The more people who ask this question, the more it gets noticed.
The more people who ask this question, the more it gets noticed.
Create a customer community for your own organization
Plans starting at $19/month
-
Inappropriate?(.)$1
Depends on where the regex is going, that might work.
Loading Profile...



EMPLOYEE