Split Pattern
open class SplitPattern( text: String, delimiters: String = ",", removeTrailingAsterisks: Boolean = true)
Content copied to clipboard
Splits given text into parts and provides testing utilities for its elements. Basic use cases are to specify different function or class names in the detekt yaml config and test for their appearance in specific rules.
Constructors
Link copied to clipboard
fun SplitPattern( text: String, delimiters: String = ",", removeTrailingAsterisks: Boolean = true)
Content copied to clipboard