Java String Starts Wtih startsWith(String s, String prefix)

Here you can find the source of startsWith(String s, String prefix)

Description

starts With

License

Apache License

Parameter

Parameter Description
s (not null)
prefix (not null)

Return

true if s starts with prefix (case insensitively)

Declaration

public static boolean startsWith(String s, String prefix) 

Method Source Code

//package com.java2s;
/**/*from  www. j  av  a  2s  .  c  o m*/
 * Copyright 2016-2017 Linagora, Universit? Joseph Fourier, Floralis
 *
 * The present code is developed in the scope of the joint LINAGORA -
 * Universit? Joseph Fourier - Floralis research program and is designated
 * as a "Result" pursuant to the terms and conditions of the LINAGORA
 * - Universit? Joseph Fourier - Floralis research program. Each copyright
 * holder of Results enumerated here above fully & independently holds complete
 * ownership of the complete Intellectual Property rights applicable to the whole
 * of said Results, and may freely exploit it in any manner which does not infringe
 * the moral rights of the other copyright holders.
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *     http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */

public class Main {
    /**
     * @param s (not null)
     * @param prefix (not null)
     * @return true if s starts with prefix (case insensitively)
     */
    public static boolean startsWith(String s, String prefix) {
        return s.toLowerCase().startsWith(prefix.toLowerCase());
    }
}

Related

  1. startsWith(String s, boolean caseIgnore, String... args)
  2. startsWith(String s, char begin)
  3. startsWith(String s, char c)
  4. startsWith(String s, int offset, int end, String t)
  5. startsWith(String s, String begin)
  6. startsWith(String s, String prefix)
  7. startswith(String s, String prefix)
  8. startsWith(String s, String start)
  9. startsWith(String s, String start)