regrep
v0.9.7
Published
You want to match multi lines use this regex `(.|[\r\n])*` or `[\s\S]*`
Readme
You want to match multi lines use this regex (.|[\r\n])* or [\s\S]*
Install:
npm i -g regrepUsage:
regrep pattern: note please enclose your pattern inside double quotes- Regrep only support reading data from
stdinat the moment:
echo "123abc" | regrep "/\d+/" 