reWordEndsWithPeriod constant Null safety
Matches all words that contain only letters and periods and end with a period.
Use for finding acronyms and abbreviations.
Implementation
static const reWordEndsWithPeriod = r'(?)([a-zA-Z.]+)(?=([.]))';
Matches all words that contain only letters and periods and end with a period.
Use for finding acronyms and abbreviations.
static const reWordEndsWithPeriod = r'(?)([a-zA-Z.]+)(?=([.]))';