match

v0.9.6arrow_drop_down
v0.9.6
STATUS
Passing
DOWNLOADS
2
VISIBILITY
Public
PUBLISHED
5 years ago
SIZE
804 B
Tests a regular expression against a String.
1 contributor
Install match as a package?
Copied
npm i @bit/justin-capalbo.ramda.match
Set Bit as a scoped registryLearn more
npm config set '@bit:registry' https://node.bit.cloud
Component Example
React
React
Vue
Angular
React Native
Add dependency... help_outline
Just
import
any of the 1 million components
and packages in Bit or NPM to the example.
import Button from '@bit/grommet.grommet.button';
import Lodash from 'lodash';
toggle layout
No preview available
modifieddraft
chevron_left
chevron_right
match (
rx:RegExp,
str:String
) : Array

Tests a regular expression against a String. Note that this function will return an empty array when there are no matches. This differs from String.prototype.match which returns null when there are no matches.

Example
R.match(/([a-z]a)/g, 'bananas'); //=> ['ba', 'na', 'na']
     R.match(/a/, 'b'); //=> []
     R.match(/a/, null); //=> TypeError: null does not have a method named "match"
Arguments
rx: RegExp

A regular expression.

str: String

The string to match against

Returns
Array

The list of matches or empty array.

Help and resources