Class ArraySplitter


  • public class ArraySplitter
    extends Object
    A utility class for parsing a string into array, elements of which are delimited by a comma ','. Comma symbol can be escaped by the backslash symbol '\'.
    Author:
    Yury Molchan
    • Constructor Detail

      • ArraySplitter

        public ArraySplitter()
    • Method Detail

      • split

        public static String[] split​(String text)
        Splits the given string into the array elements.
      • isArray

        public static boolean isArray​(String text)
        Checks if the given string can be recognized as an array.