本文介绍了如何替换 ruby 数组中的模式的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我的阵列 server_ip 具有以下值:"[\"172.31.25.207\", \"172.31.21.29\"]"
My array server_ip has the below values:"[\"172.31.25.207\", \"172.31.21.29\"]"
但是,我希望数组如下所示:172.31.25.207"、172.31.21.29"
However, I want the array to be as below:"172.31.25.207", "172.31.21.29"
推荐答案
"[\"172.31.25.207\", \"172.31.21.29\"]"
看起来像数组的字符串表示.
looks like a string representation of array.
要将其转换回数组,请尝试以下选项之一
To convert it back to array, try one of the below options
1. JSON.parse("[\"172.31.25.207\", \"172.31.21.29\"]")
2. YAML.load("[\"172.31.25.207\", \"172.31.21.29\"]")
3. eval("[\"172.31.25.207\", \"172.31.21.29\"]")
4. "[\"172.31.25.207\", \"172.31.21.29\"]".scan(/[\d\.]+/)
一切都会好起来
这篇关于如何替换 ruby 数组中的模式的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!