Here you can find the source of startsWith(String cid1, String cid2)
Parameter | Description |
---|---|
cid1 | a parameter |
cid2 | a parameter |
public static boolean startsWith(String cid1, String cid2)
//package com.java2s; //License from project: Open Source License public class Main { /**// w w w.j a v a 2 s. c om * Check if cid1 starts with cid2. * * @param cid1 * @param cid2 * @return */ public static boolean startsWith(String cid1, String cid2) { if (cid1 == null && cid2 == null) { return true; } if (cid1 == null || cid2 == null) { return false; } if (cid1.startsWith(cid2) && cid1.charAt(cid2.length()) == '.') { return true; } return false; } }