Last data update: 2014.03.03

R: Shortens strings to a given length.
clipStringR Documentation

Shortens strings to a given length.

Description

Shortens strings to a given length.

Usage

clipString(x, len, tail = "...")

Arguments

x

[character]
Vector of strings.

len

[integer(1)]
Absolute length the string should be clipped to, including tail. Note that you cannot clip to a shorter length than tail.

tail

[character(1)]
If the string has to be shortened at least 1 character, the final characters will be tail. Default is “...”.

Value

[character(1)].

Examples

print(clipString("abcdef", 10))
print(clipString("abcdef", 5))

Results


R version 3.3.1 (2016-06-21) -- "Bug in Your Hair"
Copyright (C) 2016 The R Foundation for Statistical Computing
Platform: x86_64-pc-linux-gnu (64-bit)

R is free software and comes with ABSOLUTELY NO WARRANTY.
You are welcome to redistribute it under certain conditions.
Type 'license()' or 'licence()' for distribution details.

R is a collaborative project with many contributors.
Type 'contributors()' for more information and
'citation()' on how to cite R or R packages in publications.

Type 'demo()' for some demos, 'help()' for on-line help, or
'help.start()' for an HTML browser interface to help.
Type 'q()' to quit R.

> library(BBmisc)
> png(filename="/home/ddbj/snapshot/RGM3/R_CC/result/BBmisc/clipString.Rd_%03d_medium.png", width=480, height=480)
> ### Name: clipString
> ### Title: Shortens strings to a given length.
> ### Aliases: clipString
> 
> ### ** Examples
> 
> print(clipString("abcdef", 10))
[1] "abcdef"
> print(clipString("abcdef", 5))
[1] "ab..."
> 
> 
> 
> 
> 
> dev.off()
null device 
          1 
>