Tag: parsing

  • Parsing URL query string in Kotlin

    Parsing URL query string in Kotlin

    Sometimes you may need to parse a query string into a key-value map. Someone will suggest you to use a library like Apache, but I think it’s too easy task to add a library for it. Many solutions (on StackOverflow, for example) don’t take into account that URL query string can have multiple values for…