Skip to contents

Counts the number of digits in an integer.

Usage

n_digits_int(x)

Arguments

x

Numeric vector.

Value

Number of digits in each element of x.

Details

If x only has positive integer, is faster to use n_digits_natural().

Examples

n_digits_int(-12345)
#> [1] 5
n_digits_int(0)
#> [1] 1