noncharacter-regex

0.1.1 • Public • Published

noncharacter-regex NPM version Build Status

Regular expression for matching or stripping non-characters from a string.

Install with npm

npm i noncharacter-regex --save

Usage

var regex = require('noncharacter-regex');
regex.test('abc\uFFFExyz');
//=> 'true'
 
// strip non-characters
'abc\uFFFExyz'.replace(regex, '');

What's this all about?

non-characters are useful, for example, when you're doing string transformations and you need to use temporary placeholders to avoid unintentional mutations. In those cases, this regex would be used before do your transformations to ensure that any existing non-characters are removed before you do your replacements.

Does that happen!?

It's unlikely, but from time to time the U+FFFE non-character may show up in strings since it has the reverse binary sequence of byte-order marks.

Visit noncharacters for more info.

Run tests

Install dev dependencies:

npm i -d && npm test

Contributing

Pull requests and stars are always welcome. For bugs and feature requests, please create an issue

Author

Jon Schlinkert

License

Copyright (c) 2015 Jon Schlinkert
Released under the MIT license


This file was generated by verb on February 24, 2015.

Package Sidebar

Install

npm i noncharacter-regex

Weekly Downloads

1

Version

0.1.1

License

MIT

Last publish

Collaborators

  • doowb
  • jonschlinkert