-- | String functions. module Music.Theory.String where import Data.Char {- base -} -- | Case-insensitive '=='. -- -- > map (str_eq_ci "ci") (words "CI ci Ci cI") str_eq_ci :: String -> String -> Bool str_eq_ci x y = map toUpper x == map toUpper y -- | Remove @\r@. filter_cr :: String -> String filter_cr = filter (not . (==) '\r') -- | Delete trailing 'Char' where 'isSpace' holds. -- -- > delete_trailing_whitespace " str " == " str" delete_trailing_whitespace :: String -> String delete_trailing_whitespace = reverse . dropWhile isSpace . reverse {- | Variant of 'unwords' that does not write spaces for NIL elements. > unwords_nil [] == "" > unwords_nil ["a"] == "a" > unwords_nil ["a",""] == "a" > unwords_nil ["a","b"] == "a b" > unwords_nil ["a","","b"] == "a b" > unwords_nil ["a","","","b"] == "a b" > unwords_nil ["a","b",""] == "a b" > unwords_nil ["a","b","",""] == "a b" > unwords_nil ["","a","b"] == "a b" > unwords_nil ["","","a","b"] == "a b" -} unwords_nil :: [String] -> String unwords_nil = unwords . filter (not . null) -- | Variant of 'unlines' that does not write empty lines for NIL elements. unlines_nil :: [String] -> String unlines_nil = unlines . filter (not . null)