Skip to content

Instantly share code, notes, and snippets.

@ibrahimyilmaz
Last active August 14, 2020 23:13
Show Gist options
  • Save ibrahimyilmaz/0ef663f1c226b0e7d5865cd1f3c47a5d to your computer and use it in GitHub Desktop.
Save ibrahimyilmaz/0ef663f1c226b0e7d5865cd1f3c47a5d to your computer and use it in GitHub Desktop.
class Account(val iban: String) {
fun getFormattedIban():String {
val sb = StringBuilder()
for (i in 0..15) {
if (i % 4 == 0) sb.append(" ")
sb.append(iban[i])
}
return sb.toString()
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment