Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/nisaacson/mostcommon
https://github.com/nisaacson/mostcommon
Last synced: about 1 month ago
JSON representation
- Host: GitHub
- URL: https://github.com/nisaacson/mostcommon
- Owner: nisaacson
- Created: 2013-01-29T05:10:17.000Z (almost 12 years ago)
- Default Branch: master
- Last Pushed: 2013-01-29T05:11:49.000Z (almost 12 years ago)
- Last Synced: 2024-09-14T10:08:18.568Z (2 months ago)
- Language: JavaScript
- Size: 105 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.MD
Awesome Lists containing this project
README
# Most Common
Given an array of regex patterns and a block of text, find the input pattern with the most matches in the text# Usage
```
var inputs = [
'a1',
'a2',
'a3',
'a4'
];var text = 'Lorem a1 ipsum a1 dolor a1 sit a2 amet, a2 consectetur a3 adipiscing'
// max should be 'a1'
var max = mostcommon(inputs, text);
```