【发布时间】:2020-07-04 04:27:00
【问题描述】:
我有类似以下的内容。是否有可能让空手道为foo 和bar 进行“或”匹配?
含义 - foo 以 fooStartWithChar 开头或 bar 以 barStartWithChar 开头
And match each response ==
"""
{
foo: '#? { _.charAt(0) == fooStartWithChar}',
bar: '#? { _.charAt(0) == barStartWithChar}',
}
"""
【问题讨论】: