Use native rust trim_start and trim_end instead of using Regex
linrium opened this issue · 1 comments
linrium commented
I checked the trim document https://doc.rust-lang.org/std/primitive.str.html#method.trim. It supports well trim_start
and trim_end
, so I don't think we need to implement the trim util anymore.
pintariching commented
I didn't think of that thank you!