I need to find the letters which have the same letter before and after. Using regular expression how do that?
Example:
JavaScript
x
9
1
Input ➵ Output
2
oooh my god ➵ ooo
3
Llanfairpwllgwyngyllgogerychwyrndrobwllllantysiliogogogoch ➵ gog, lll, lll, ogo, gog, ogo, gog, ogo
4
Jewnited Snakes of Amerikkka ➵ kkk
5
skilllessness ➵ lll
6
salpingooophoritis ➵ ooo, iti
7
princessship / mistressship ➵ ssss, sss
8
same letter / triple letters ➵ ele
9
Basically, I need to find out pattern XXX or XYX, excluding special characters or space.
Advertisement
Answer
Here’s a solution using JavaScript with regex:
JavaScript
1
2
1
(?=((w)w2))
2
The results are stored in group 1.
JavaScript
1
13
13
1
const inputs = [
2
'oooh my god',
3
'Llanfairpwllgwyngyllgogerychwyrndrobwllllantysiliogogogoch',
4
'Jewnited Snakes of Amerikkka',
5
'skilllessness',
6
'salpingooophoritis',
7
'princessship / mistressship',
8
'same letter / triple letters'
9
];
10
11
const results = inputs.map(input => [input.matchAll(/(?=((w)w2))/g)].map(res => res[1]));
12
13
console.log(results);
Not sure where does ele
come from same letter / triple letters
and ssss
from princessship / mistressship
. I assume those are typos