All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.chrisdempewolf.pinterest.fields.FieldSerializer.kt Maven / Gradle / Ivy

There is a newer version: 4.2.1
Show newest version
package com.chrisdempewolf.pinterest.fields

import java.util.regex.Pattern

object FieldSerializer {
    private val INVALID_CHAR_PATTERN = Pattern.compile("[\\[\\] ]")

    @JvmStatic
    fun serialize(fields: Set?): String
        = if (fields == null) ""
          else INVALID_CHAR_PATTERN.matcher(fields.toString()).replaceAll("")

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy