5

我有一个要转换的字符串:

"replace-me-correctly"=>"Replace me correctly"

我使用 Ramda.js 的代码:

const _ = R; //converting Ramda.js to use _

const replaceTail = _.compose(_.replace(/-/g, ' '), _.tail);
const upperHead = _.compose(_.toUpper ,_.head);

const replaceMe = (str) => _.concat(upperHead(str) , replaceTail(str));

replaceMe("replace-me-correctly"); // "Replace me correctly"

我想知道的是是否有一种更清洁更有效的组合方式replaceTailupperHead所以我只遍历字符串一次?

JSBin 示例

4

2 回答 2

6

不确定是否只遍历字符串一次。听起来很难。不过,我将提供一些不同的方法来获得乐趣和洞察力。

函数的 monoid 实例将通过使用给定参数运行所有函数并连接它们的结果来连接每个函数(它们必须都返回相同的类型才能正确组合)。replaceMe正是这样做的,所以我们可以使用mconcat

const { compose, head, tail, replace, toUpper } = require('ramda')
const { mconcat } = require('pointfree-fantasy')

// fun with monoids
const replaceTail = compose(replace(/-/g, ' '), tail)
const upperHead = compose(toUpper, head)
const replaceMe = mconcat([upperHead, replaceTail])

replaceMe("replace-me-correctly")
//=> "Replace me correctly"

这是组合功能的一种有趣方式。我不确定为什么要求tailreplace. 似乎replace可以更新该函数以-通过正则表达式替换任何过去的起始字符。如果是这种情况,我们可以内联replace.

还有一件事。dimapProfunctor的函数实例非常简洁,lens 也是如此。将它们一起使用,我们可以将字符串转换为数组,然后toUpper只是第 0 个索引。

const { curry, compose, split, join, head, replace, toUpper } = require('ramda')
const { mconcat } = require('pointfree-fantasy')
const { makeLenses, over } = require('lenses')
const L = makeLenses([])

// fun with dimap
const dimap = curry((f, g, h) => compose(f,h,g))
const asChars = dimap(join(''), split(''))
const replaceMe = compose(replace(/-/g, ' '), asChars(over(L.num(0), toUpper)))

replaceMe("replace-me-correctly")
//=> "Replace me correctly"
于 2015-11-27T01:56:13.430 回答
4

Brian 的解决方案很棒。

请注意,您可以使用以下mconcat命令在普通 Ramda 中执行类似操作lift

const replaceMe = _.lift(_.concat)(upperHead, replaceTail)
于 2015-11-27T16:09:58.057 回答