Scilab Home page | Wiki | Bug tracker | Forge | Mailing list archives | ATOMS | File exchange
Please login or create an account
Change language to: English - Português - Русский - 日本語
Aide de Scilab >> Chaînes de caractères > isdigit

isdigit

check that characters of a string are digits between 0 and 9

Syntax

res = isdigit(str)

Arguments

str

a character string.

res

a boolean matrix.

Description

res = isdigit(str) returns an array the same size as str containing logical %t (TRUE) where the elements of str are digits and logical %f (FALSE) where they are not.

Examples

s = 'A1,B2,C3';
isdigit(s)

See Also

  • isalphanum — check that characters of a string are alphanumerics
  • isletter — check that characters of a string are alphabetic letters
  • isnum — teste si une chaîne de caractères représente un nombre
Scilab Enterprises
Copyright (c) 2011-2015 (Scilab Enterprises)
Copyright (c) 1989-2012 (INRIA)
Copyright (c) 1989-2007 (ENPC)
with contributors
Last updated:
Wed Jun 15 08:31:07 CEST 2016