Skip to content

Instantly share code, notes, and snippets.

@magdamiu
Last active August 21, 2021 12:37
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 magdamiu/083d203e88961abe2f6d3861f6e980a0 to your computer and use it in GitHub Desktop.
Save magdamiu/083d203e88961abe2f6d3861f6e980a0 to your computer and use it in GitHub Desktop.
Clean Code with Kotlin by Magda Miu - Meaningful names 1 - Unclean Code
data class GetFile(val d: String, val n: String)
val pattern = Regex("(.+)/([^/]*)")
fun files(ph: String): PathParts {
val match = pattern.matchEntire(ph)
?: return PathParts("", ph)
return PathParts(match.groupValues[1],
match.groupValues[2])
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment