wcstring
wcstring
is a JavaScript CommonJS (node.js) package for working
with strings in a terminal (tty) context. In the terminal various characters
are double the size of others, to operate on those characters wcstring
is a helpful companion.
Installation & Usage
With npm you can install and use the wcstring
like this:
$ npm install wcstring --save
With the package being successfully installed you can create an instance like this:
var WCString = require('wcstring')
var str = new WCString('ABCdef', charWidth)
var str2 = WCString('abcDEF', charWidth)
Operations
On the instance you can apply a set of operations. Note that the following explanation uses size
as an accumulated amount of width and width
as a single-line size
.
.width()
Get the size
of the widest line in the string.
.size()
Get the size
of the complete string.
.sizeBeforeFirst(search, [<int> startOffset])
Analogous to String.indexOf
. Looks for the first occurance of search
. Optionally takes startOffset
which is the size
of characters that have to happen before the search takes place (default=0).
.sizeBeforeLast(search, [<int> endOffset])
Analogous to String.lastIndexOf
. Looks for the last occurance of search
.
Optionally takes endOffset
which is the size offset from the end of the string from which to search for search
.
.substring(<int> startSize, [<int> endSize])
Analogous to String.substring
. This method will return the fully visible characters between startSize
and endSize
. If endSize
is not given it will assume a substring from startSize
until the end of the string.
Unlike the String.substring
method however this method returns an object with the properties size
and string
in order to know the size of the substring.
Example:
var vsstring = require('wcstring')
vsstring('abcdef', charWidth).substring(0, 3)
.substr(<int> startSize, [<int> size])
Equal to .substring(startSize, startSize + size)
.
.wrap(<int> width)
Normalizes the string in order for all lines to fit within width
.
Example:
var vsstring = require('wcstring')
vsstring('abcdef', charWidth).wrap(3)
vsstring('ab cd ef', charWidth).wrap(5)
vsstring('ab cd ef', charWidth).wrap(3)
.truncate(<int> size, <wcstring || String> suffix)
Truncates the string after a size. Will append the given suffix
to the string if it does exceed the size.