dongzhuxun5136 2013-03-19 11:46
浏览 126
已采纳

在PHP中将字符串拆分为数组的最快方法

I have a PHP script which splits strings into arrays using prey_split. The preg_split code is:

preg_split("~(?<!\*):~", $val);

Which essentially splits the string where there is a colon, without a preceding asterisk. For example: "h*:el:lo" turns into array("h*:el", "lo")

This process is quite resource intensive and slow when splitting large amounts of strings. Is there a faster method to achieve this?

  • 写回答

2条回答 默认 最新

  • dounangshen6553 2013-03-19 12:54
    关注

    Are you required to use preg_split()? Because it's easier to use preg_match_all():

    preg_match_all('/(?:^|:)([^*:]+(?:\*.[^*:]+)*)/', $subject, $result, PREG_PATTERN_ORDER);
    $result = $result[1];
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(1条)

报告相同问题?

悬赏问题

  • ¥15 求chat4.0解答一道线性规划题,用lingo编程运行,第一问要求写出数学模型和lingo语言编程模型,第二问第三问解答就行,我的ddl要到了谁来求了
  • ¥15 Ubuntu在安装序列比对软件STAR时出现报错如何解决
  • ¥50 树莓派安卓APK系统签名
  • ¥15 maple软件,用solve求反函数出现rootof,怎么办?
  • ¥65 汇编语言除法溢出问题
  • ¥15 Visual Studio问题
  • ¥20 求一个html代码,有偿
  • ¥100 关于使用MATLAB中copularnd函数的问题
  • ¥20 在虚拟机的pycharm上
  • ¥15 jupyterthemes 设置完毕后没有效果