Expand Contractions
Expand all contractions to their formal equivalents.
Installation
npm install @stdlib/nlp-expand-contractions
Usage
var expandContractions = require( '@stdlib/nlp-expand-contractions' );
expandContractions( str )
Expands all contractions to their formal equivalents.
var str = 'I won\'t be able to get y\'all out of this one.';
var out = expandContractions( str );
Notes
- This expansion is done via a simple table look-up. Hence, it will not correctly replace contractions for which there are multiple possible expansions such as
"She'd"
, which can be expanded to both "She would"
or "She had"
. In such cases, the package expands to a chosen default, in the given example "She would"
. Should you desire higher accuracy, consider using a fully-fledged NLP disambiguation algorithm for English contractions.
Examples
var expandContractions = require( '@stdlib/nlp-expand-contractions' );
var str = 'I won\'t be able to, sorry.';
var out = expandContractions( str );
str = 'She\'ll be coming around the mountain...';
out = expandContractions( str );
str = 'Y\'all\'d be surprised if you know what I\'ll do.';
out = expandContractions( str );
str = 'Y\'all\'d\'ve come to the park if y\'all could\'ve, right?';
out = expandContractions( str );
str = 'If Parker hadn\'t been sent off for a foul, they\'d\'ve won.';
out = expandContractions( str );
Notice
This package is part of stdlib, a standard library for JavaScript and Node.js, with an emphasis on numerical and scientific computing. The library provides a collection of robust, high performance libraries for mathematics, statistics, streams, utilities, and more.
For more information on the project, filing bug reports and feature requests, and guidance on how to develop stdlib, see the main project repository.
License
See LICENSE.
Copyright
Copyright © 2016-2021. The Stdlib Authors.
0.0.6 (2021-07-09)
No changes reported for this release.
</section>
<!-- /.release -->
<section class="release" id="v0.0.5">