NetMirror.apk
Download file
package B0;
/* JADX INFO: loaded from: classes.dex */
public class c {
public static boolean a(char c4) {
return c4 >= '0' && c4 <= '9';
}
public static boolean b(char c4) {
return (c4 >= 'a' && c4 <= 'z') || (c4 >= 'A' && c4 <= 'Z');
}
public static boolean c(char c4) {
return b(c4) || a(c4);
}
public static boolean d(CharSequence charSequence, int i3, int i4, int i5, int i6) {
int i7;
if (i4 >= charSequence.length() || (i7 = (i4 - i3) + 1) < i5 || i7 > i6) {
return false;
}
while (i3 <= i4) {
if (!c(charSequence.charAt(i3))) {
return false;
}
i3++;
}
return true;
}
public static boolean e(CharSequence charSequence, int i3, int i4) {
return d(charSequence, i3, i4, 3, 8);
}
}
⚠️ This content was hidden by an advertisement filtering extension in your browser. Please disable it and reload the page to access the decompiled content.
We only display one small text ad to keep this service free. Here's what it looks like:
Read the Docs for Business: You write the docs. We do the rest.
Try it today!Ad by EthicalAds
Download file