Skip to content

Instantly share code, notes, and snippets.

@dcampogiani
Created August 15, 2020 10:43
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save dcampogiani/eb525de334e504cd1976acedd386035a to your computer and use it in GitHub Desktop.
Save dcampogiani/eb525de334e504cd1976acedd386035a to your computer and use it in GitHub Desktop.
private fun extractExpirationLine(lines: List<String>) =
lines.flatMap { it.split(" ") }
.firstOrNull { (it.length == 5 || it.length == 7) && it[2] == '/' }
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment