Regular Expressions 101

Community Patterns

Match on period following single letter name initial for TTS Rendering without Pause

1

Regular Expression
PCRE2 (PHP >=7.3)

/
(?<=[A-Z])\.
/
g

Description

Match on period following single letter name initial for TTS Rendering without Pause Specifically, matches all occurrences of period if preceded by capital letter.

Used in T2S android tts app for rendering text without pausing after letter name initial.

Submitted by Scott K - 5 months ago