reWordEndsWithPeriod constant Null safety

String const reWordEndsWithPeriod

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.]+)(?=([.]))';