noncharacter-regex
v0.1.1
Published
Regular expression for matching or stripping non-characters from a string.
Downloads
9
Readme
noncharacter-regex
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.