0.2.2 • Published 4 months ago
@stdlib/string-base-altcase v0.2.2
altcase
Convert a string to alternate case.
Installation
npm install @stdlib/string-base-altcase
Usage
var altcase = require( '@stdlib/string-base-altcase' );
altcase( str )
Converts a string to alternate case.
var str = altcase( 'foo bar' );
// returns 'fOo bAr'
str = altcase( 'foo bar baz' );
// returns 'fOo bAr bAz'
str = altcase( 'foo_bar' );
// returns 'fOo_bAr'
Examples
var altcase = require( '@stdlib/string-base-altcase' );
var str = 'Hello World!';
var out = altcase( str );
// returns 'hElLo wOrLd!'
str = 'I am a tiny little teapot';
out = altcase( str );
// returns 'i aM A TiNy lItTlE TeApOt'
str = 'with big problems';
out = altcase( str );
// returns 'wItH BiG PrObLeMs'
str = 'To be, or not to be: that is the question.';
out = altcase( str );
// returns 'tO Be, Or nOt tO Be: ThAt iS ThE QuEsTiOn.'
str = 'isMobile';
out = altcase( str );
// returns 'iSmObIlE'
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.
Community
License
See LICENSE.
Copyright
Copyright © 2016-2024. The Stdlib Authors.