altcase

Convert a string to alternate case.

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'
Did you find this page helpful?