| fun String.createJSONArray(): JSONArray?create JSONArray from String | |
| fun String.createJSONObject(): JSONObject?create JSONObject from String | |
| fun String.getBitmap(): Bitmap?get bitmap from filePath | |
| fun String.getFileExtension(): Stringget extensions of given file path | |
| fun String.getImageHeight(): Intget Height of Image which given String | |
| fun String.getImageMimeType(): Stringget MimeType of Image which given String | |
| fun String.getImageWidth(): Intget Width of Image which given String | |
| fun String.getVideoHeight(): Intget Height of Video which given String | |
| fun String.getVideoWidth(): Intget Width of Video which given String | |
| fun String.isEmpty(): Booleanreturn string empty state | |
| fun String.isEmptyOrReturn(default: String = ""): Stringget string with empty handling | |
| fun String.isExistReadFile(): BooleanTest given path is exists and can read | |
| fun String.parseDate(format: String? = "yyyy-MM-dd HH:mm:ss"): Date?parsing date from String | |
| fun String.safeBigDecimal(default: BigDecimal = BigDecimal.ZERO): BigDecimalsafe cast String to BigDecimal | |
| fun String.safeBigInteger(radix: Int = 10, default: BigInteger = BigInteger.ZERO): BigIntegersafe cast String to BigInteger | |
| fun String.safeByte(radix: Int = 10, default: Byte = 0): Bytesafe cast String to Byte | |
| fun String.safeDouble(default: Double = 0.0): Doublesafe cast String to Double | |
| fun String.safeFloat(default: Float = 0.0f): Floatsafe cast String to Float | |
| fun String.safeInt(radix: Int = 10, default: Int = 0): Intsafe cast String to Int | |
| fun String.safeLong(radix: Int = 10, default: Long = 0L): Longsafe cast String to Long | |
| fun String.safeShort(radix: Int = 10, default: Short = 0): Shortsafe cast String to Short | |
| fun String.toDateString(fromFormat: String, toFormat: String): Stringformat formatted date to another formatted date | |
| fun String.toFile(): Filemake String to File |