douye1876 2014-02-27 23:42
浏览 110
已采纳

在javascript中获取2个字符之间的子字符串

First of all, I tried to search it on SO but couldn't find a solution. I have a string

var str = 'a:5:{i:0;s:1:"1";i:1;s:1:"2";i:2;s:1:"3";i:3;s:1:"4";i:4;s:1:"5";}';

I want to grab all numbers between " " as an array in javascript. I tried this suggested on one of the SO questions.

console.log(str.split(/[""]/));

but this outputs

["a:5{i:0;s:1:", "1", ";i:1;:", "2", ";i:2;s:1:", "7", ";i:3;s:1:", "4", ";i:4;s:1:", "5", ";}"]

which is not exact.

Actually that above string is an array of PHP stored in MemcacheD and I am retrieving it in Node.JS and that's why I can't use json_encode or so. I am not good at Regex. So Experts please show some shine on it.

The result of above string should be an array or string like this

str = "1,2,3,4,5"; 

or an array like

array = [1,2,3,4,5];
  • 写回答

3条回答 默认 最新

  • dongma7725 2014-02-27 23:59
    关注

    So, this is a PHP serialized string. There is a version of unserialize available for javascript in the php.js project.

    So using that function.

    Javascript

    var str = 'a:5:{i:0;s:1:"1";i:1;s:1:"2";i:2;s:1:"3";i:3;s:1:"4";i:4;s:1:"5";}';
    
    console.log(unserialize(str));
    

    Output

    ["1", "2", "3", "4", "5"] 
    

    On jsFiddle

    And if you are using nodejs then you could also consider a module like php-unserialize

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(2条)

报告相同问题?

悬赏问题

  • ¥15 Vue3 大型图片数据拖动排序
  • ¥15 划分vlan后不通了
  • ¥15 GDI处理通道视频时总是带有白色锯齿
  • ¥20 用雷电模拟器安装百达屋apk一直闪退
  • ¥15 算能科技20240506咨询(拒绝大模型回答)
  • ¥15 自适应 AR 模型 参数估计Matlab程序
  • ¥100 角动量包络面如何用MATLAB绘制
  • ¥15 merge函数占用内存过大
  • ¥15 使用EMD去噪处理RML2016数据集时候的原理
  • ¥15 神经网络预测均方误差很小 但是图像上看着差别太大