slack-help 2024-01-29

#cuerdas string library doesn't have an own channel here. Just found that latest versions 2023.10.15-405 & 407 consider capital E and Q as white space ... is there any other channel here that could be used to warn others for those versions?

(str/trim "E is white space")
=> "is white space"

• Add performance improvement for default case of trim, rtrim and ltrim (arity 1) now has the regexp:

#"^[\Q\Q

	 \E\\E\Q\E]+|[\Q\Q

	 \E\\E\Q\E]+$"
which seems to be wrong.

🤣 2

Are you talking about the built-in namespace clojure.string and its trim function? Or something else?

@ac The best approach is to create issues on that GH repo with examples of the bugs -- that way others will be able to see the issues for themselves.

(which I see you've already done -- so that's good)

You could also post in #funcool which is where most of that libraries users here hang out I suspect.

🙏 1