Java String Length Get length(String arg)

Here you can find the source of length(String arg)

Description

length

License

Apache License

Declaration

static final public double length(String arg) 

Method Source Code

//package com.java2s;
//License from project: Apache License 

public class Main {
    static final public double length(String arg) {
        return arg != null ? arg.length() : 0;
    }//from w  w  w. j  a  v a 2  s . c  om
}

Related

  1. length(final String s)
  2. length(final String s, final String separator)
  3. length(Object string)
  4. length(String buffer)
  5. length(String s)
  6. length(String s)
  7. length(String schema)