gpt4 book ai didi

ruby - 将字符串转换为方法和参数列表

转载 作者:太空宇宙 更新时间:2023-11-03 18:07:20 26 4
gpt4 key购买 nike

我有一个字符串:

input # => 'make_me sandwich noodles coffee'

我想用参数sandwichnoodlescoffee调用make_me方法:

make_me(sandwich, noodles, coffee)

我知道使用 split,并使用第一个数组元素作为方法名称,其余部分作为参数。有没有更好的办法?

最佳答案

听起来很危险,但你开始吧:

command_with_args = input.split(" ")
send(command_with_args[0], *command_with_args[1..3])

关于ruby - 将字符串转换为方法和参数列表,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42060918/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com