BytePane

Duplicate Words Regex Pattern

Detects consecutively repeated words like "the the" or "is is". Useful for proofreading and text cleanup.

T
Text & Strings
Intermediate
Difficulty
Universal
Language
gi
Flags
// Regular Expression
/\b(\w+)\s+\1\b/gi

Live Regex Tester

Pattern Breakdown

\b(\w+)\s+\1\b
Character class [ ]
Group ( )
Quantifier { }
Anchor ^ $
Repetition * + ?
Escape \
Alternation |
Any char .

Code Examples

JavaScript

const regex = /\b(\w+)\s+\1\b/gi;
const test = "the the";
console.log(regex.test(test)); // true

// Extract matches
const matches = test.match(regex);
console.log(matches);

Python

import re

pattern = r'\b(\w+)\s+\1\b'
test = "the the"
match = re.findall(pattern, test, re.IGNORECASE)
print(match)  # Found!

Go

package main

import (
    "fmt"
    "regexp"
)

func main() {
    re := regexp.MustCompile(`\b(\w+)\s+\1\b`)
    fmt.Println(re.MatchString("the the")) // true
}

Common Use Cases

Proofreadingtext quality checkingcontent editing

Match Examples

InputResult
the theMatch
the thereNo Match

About the Duplicate Words Regex

Detects consecutively repeated words like "the the" or "is is". Useful for proofreading and text cleanup.

Regular expressions (regex) are powerful pattern matching tools used across virtually all programming languages. The duplicate words pattern is classified as intermediate difficulty in the text & strings category. It works in all major programming languages.

When using this regex, always consider edge cases and test thoroughly with real-world data. Use the interactive tester above to validate the pattern against your specific inputs before deploying to production.

Need More Regex Patterns?

Browse our complete library of 100+ regex patterns with interactive testers.

Frequently Asked Questions

What is the Duplicate Words regex pattern?

Detects consecutively repeated words like "the the" or "is is". Useful for proofreading and text cleanup.

How do I use the Duplicate Words regex?

Use the pattern /\b(\w+)\s+\1\b/gi in your code. In JavaScript: new RegExp('\b(\w+)\s+\1\b', 'gi'). Test it above with your own input.

What does this Duplicate Words regex match?

This pattern matches: "the the". It does NOT match: "the there". Proofreading, text quality checking, content editing.

Is the Duplicate Words regex beginner-friendly?

This pattern is rated Intermediate. It uses some advanced features like character classes and quantifiers.

What languages support the Duplicate Words regex?

This pattern works in all major programming languages including JavaScript, Python, Java, C#, Go, Ruby, PHP, and more. Syntax may vary slightly between regex engines.

Can I modify the Duplicate Words regex for my use case?

Yes! Use the interactive tester above to modify the pattern and test with your own data. Common modifications include making it case-insensitive (add 'i' flag), matching globally (add 'g' flag), or adjusting character classes.

Related Tools