Merge "Adds stripTrailingFs"

am: 27bb333e14

Change-Id: I355be2bb0b23e69103edc073ffe3adb757e57aa9
This commit is contained in:
Jun Yin
2018-01-25 03:27:05 +00:00
committed by android-build-merger

View File

@@ -836,6 +836,13 @@ public class IccUtils {
return new String(new char[] {HEX_CHARS[(b & 0xFF) >>> 4], HEX_CHARS[b & 0xF]});
}
/**
* Strip all the trailing 'F' characters of a string, e.g., an ICCID.
*/
public static String stripTrailingFs(String s) {
return s == null ? null : s.replaceAll("(?i)f*$", "");
}
/**
* Converts a character of [0-9a-aA-F] to its hex value in a byte. If the character is not a
* hex number, 0 will be returned.