我有这条线

str =  "\n\t\t\t\t\t\t\t\tRemovable neck strapBelt loop\n                                \n                                \n                                \n\t\t\t\t\t\t\"

想转换成
Removable neck strap Belt loop

注意strapBelt是如何分离的。
到目前为止,我已经做到了
 str.gsub(/\n|\t/,'').strip

这给了我
 Removable neck strapBelt loop

但未能在strapBelt之间分割。

最佳答案

str.gsub(/([a-z])([A-Z])/, '\1 \2').strip

10-05 22:21