3.2.0 • Published 2 years ago

twitter-regexps v3.2.0

Weekly downloads
37
License
MIT
Repository
github
Last release
2 years ago

Twitter precompiled regular expressions

npm Travis install size

Some regular expressions extracted from twitter-text package and optimized with regexp-tree.

The reason I create this package is the twitter-text original package size (about 2Mb) and amount of work compiler and processor needs to do just to use it (all regexps are compiling at runtime). Here in my package with compiled regexps, so you can use only regexps you need.

Packages used:

  • twitter-text@3.1.0
  • twemoji-parser@14.0.0

Current list of regular expressions

  • url
  • cashtag
  • hashtag
  • mention
  • emoji
  • hashsign
  • atsign

Examples

cashtag

Extract cashtags. source

var regexp = require('twitter-regexps/cashtag');

var data = regexp.exec('Some text with cashtag $GE');
data.2; // '$' (sign)
data.3; // 'GE' (cashtag)
data.index; // 22 (position)

emoji

Extract emoji. source

var regexp = require('twitter-regexps/emoji');

var data = regexp.exec('Some text with 🧡 Twemoji!');
data.0; // '🧡' (emoji)
data.index; // 15 (position)

hashtag

Extract hashtags. source

var regexp = require('twitter-regexps/hashtag');

var data = regexp.exec('Some text with #hashtag');
data.2; // '#' (sign)
data.3; // 'hashtag' (hashtag)
data.index; // 14 (position)

mention

Extract mentions. source

var regexp = require('twitter-regexps/mention');

var data = regexp.exec('Some @username mention');
data.2; // '@' (sign)
data.3; // 'username' (username)
data.index; // 4 (position)

url

Extract urls. source

var regexp = require('twitter-regexps/url');

var data = regexp.exec('Some tweet with https://www.wikipedia.org/wiki/twitter link');
data.3; // 'https://www.wikipedia.org/wiki/twitter' (url)
data.4; // 'https://' (protocol)
data.5; // 'www.wikipedia.org' (domain)
data.7; // '/wiki/twitter' (path)
data.index; // 15 (position)
3.2.0

2 years ago

3.1.2

2 years ago

3.1.1

4 years ago

3.1.0

4 years ago

3.0.0

6 years ago

2.0.6-0

6 years ago

2.0.5

6 years ago

2.0.3

6 years ago

1.3.4

7 years ago

1.3.3

7 years ago

1.3.2

7 years ago

1.3.1

7 years ago

1.3.0

8 years ago

1.2.0

8 years ago

1.1.2

8 years ago

1.1.1

9 years ago

1.1.0

9 years ago

1.0.8

9 years ago

1.0.7

9 years ago

1.0.6

9 years ago

1.0.5

9 years ago

1.0.4

9 years ago

1.0.3

9 years ago

1.0.2

9 years ago

1.0.1

9 years ago

1.0.0

9 years ago