Java String Lower Case toLowerCase(String[] strArr)

Here you can find the source of toLowerCase(String[] strArr)

Description

to Lower Case

License

Apache License

Declaration

static String[] toLowerCase(String[] strArr) 

Method Source Code

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

public class Main {
    static String[] toLowerCase(String[] strArr) {
        if (strArr == null)
            return null;
        String[] res = new String[strArr.length];
        for (int i = 0; i < strArr.length; i++) {
            res[i] = strArr[i].toLowerCase();
        }//from  w w w  .j a va 2 s  .  c  o m
        return res;
    }
}

Related

  1. toLowerCase(String text)
  2. toLowerCase(String text)
  3. toLowerCase(String text)
  4. toLowerCase(String value)
  5. toLowerCase(String value)
  6. toLowerCase(StringBuffer buf)
  7. toLowerCase(StringBuffer buffer)
  8. toLowerCase0(String string)
  9. toLowerCaseAscii(String s)