Community Patterns

Community Library Entry

1

Regular Expression
Created·2016-08-26 18:12
Flavor·PCRE (Legacy)

/
(?:(?:[^\s\d\x2e]+[\s\d\x2e]*)|(?:[\x2e\s\d]*[^\s\x2e\d]+))[\r\n]
/
Open regex in editor

Description

It matches any one line of string that does not have only digit, space and dot(\x2e). If it has any character beside the aformentioned ones there is a match.

Submitted by Moein