semver-regex

WebJar for semver-regex

License

License

MIT
GroupId

GroupId

org.webjars.npm
ArtifactId

ArtifactId

semver-regex
Last Version

Last Version

1.0.0
Release Date

Release Date

Type

Type

jar
Description

Description

semver-regex
WebJar for semver-regex
Project URL

Project URL

http://webjars.org
Source Code Management

Source Code Management

https://github.com/sindresorhus/semver-regex

Download semver-regex

How to add to project

<!-- https://jarcasting.com/artifacts/org.webjars.npm/semver-regex/ -->
<dependency>
    <groupId>org.webjars.npm</groupId>
    <artifactId>semver-regex</artifactId>
    <version>1.0.0</version>
</dependency>
// https://jarcasting.com/artifacts/org.webjars.npm/semver-regex/
implementation 'org.webjars.npm:semver-regex:1.0.0'
// https://jarcasting.com/artifacts/org.webjars.npm/semver-regex/
implementation ("org.webjars.npm:semver-regex:1.0.0")
'org.webjars.npm:semver-regex:jar:1.0.0'
<dependency org="org.webjars.npm" name="semver-regex" rev="1.0.0">
  <artifact name="semver-regex" type="jar" />
</dependency>
@Grapes(
@Grab(group='org.webjars.npm', module='semver-regex', version='1.0.0')
)
libraryDependencies += "org.webjars.npm" % "semver-regex" % "1.0.0"
[org.webjars.npm/semver-regex "1.0.0"]

Dependencies

There are no dependencies for this project. It is a standalone project that does not depend on any other jars.

Project Modules

There are no modules declared in this project.

semver-regex Build Status

Regular expression for matching semver versions

Install

$ npm install semver-regex

Usage

const semverRegex = require('semver-regex');

semverRegex().test('v1.0.0');
//=> true

semverRegex().test('1.2.3-alpha.10.beta.0+build.unicorn.rainbow');
//=> true

semverRegex().exec('unicorn 1.0.0 rainbow')[0];
//=> '1.0.0'

'unicorn 1.0.0 and rainbow 2.1.3'.match(semverRegex());
//=> ['1.0.0', '2.1.3']

Related

  • find-versions - Find semver versions in a string
  • latest-semver - Get the latest stable semver version from an array of versions
  • to-semver - Get an array of valid, sorted, and cleaned semver versions from an array of strings
  • semver-diff - Get the diff type of two semver versions: 0.0.1 0.0.2patch
  • semver-truncate - Truncate a semver version: 1.2.31.2.0

Versions

Version
1.0.0