Personality type assessment
OCEAN personality model
9 personality types & motivations
Behavioral style analysis
Attention & focus evaluation
Thinking patterns & learning styles
How you express and receive love
Relationship patterns & emotional needs
Partnership assessment & analysis
Professional burnout assessment
Mental health self-assessment
Stress adaptation & recovery
Internal vs external control beliefs
Perseverance & passion assessment
Creative thinking abilities
Top 5 natural talents
6-factor personality model
Narcissism, machiavellianism, psychopathy
Relationship harmony assessment
Intertype relations & cognitive functions
Emotional understanding & response
Present-moment awareness
Sleep patterns & health assessment
Stress management strategies
Creative problem-solving ability
Visual, auditory, kinesthetic preferences
Ethical values & moral reasoning
Jungian personality archetypes
Behavioral style through colors
Hogwarts house personality quiz
Test JavaScript regular expressions with live highlighting, detailed explanations, and common pattern library.
No matches found
.
- Matches any character except newline*
- Zero or more of previous (greedy)+
- One or more of previous (greedy)?
- Zero or one of previous (optional)^
- Start of string/line anchor$
- End of string/line anchor\
- Escape special characters\d
- Digit [0-9]\w
- Word character [a-zA-Z0-9_]\s
- Whitespace character\D
- Non-digit character\W
- Non-word character\S
- Non-whitespace character[abc]
- Any of a, b, or c[a-z]
- Range a to z[^abc]
- Not a, b, or c()
- Capturing group(?:)
- Non-capturing group|
- Alternation (OR){n,m}
- Quantity n to m times(?=)
- Positive lookahead(?!)
- Negative lookahead*?
- Non-greedy (lazy) matching\b
- Word boundaryExtract Numbers:
\d+
Matches one or more digits
Remove Extra Spaces:
\s+
Matches one or more whitespace characters
Word Boundaries:
\bword\b
Matches "word" as a complete word only
Prefer \d+
over .+
for numbers
Use ^
and $
to avoid backtracking
Patterns like (a+)+
can cause exponential time
Can cause catastrophic backtracking
g
- Global: Find all matchesi
- Ignore case: Case-insensitivem
- Multiline: ^ and $ match line breakss
- Dot all: . matches newlineu
- Unicode: Full Unicode supporty
- Sticky: Match only at lastIndex