Main.java Source code

Java tutorial

Introduction

Here is the source code for Main.java

Source

//package com.java2s;

import android.text.TextUtils;

public class Main {
    public static boolean isUcos(String cid) {
        //
        if (!TextUtils.isEmpty(cid) && cid.length() == 12 && cid.startsWith("6001"))
            return false;

        return !TextUtils.isEmpty(cid) && cid.length() == 12
                && (cid.startsWith("20") || cid.startsWith("21") || cid.startsWith("60") || cid.startsWith("61"));
    }
}