从字符串中提取参数的最佳方法

发布于 2024-12-05 19:52:45 字数 290 浏览 0 评论 0原文

我有一个 name="value" 类型字符串,看起来像...

{user type="active" name="james green" id="45" group="active users"}

我需要一个通用函数来解析这种类型的字符串,从这种格式中提取所有名称/值对作为数组(始终用双引号括起来,每个参数都用空格分隔,括在 {} 中)以及初始开头词(在本例中为 user)。

任何想法将不胜感激。

I have a name="value" type string that looks like...

{user type="active" name="james green" id="45" group="active users"}

I need a generic function that will parse this type of string extracting all of the name/value pairs as an array from this format (always within double quotes and each param sepertated by a space, enclosed in {}) as well as the initial opening word (user in this case).

Any ideas would be much appreciated.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(4

蔚蓝源自深海 2024-12-12 19:52:45

基本上

 preg_match_all('~(\w+)="(.+?)"~', $string, $matches, PREG_SET_ORDER);
 foreach($matches as $m)
     $array[$m[1]] = $m[2]

basically

 preg_match_all('~(\w+)="(.+?)"~', $string, $matches, PREG_SET_ORDER);
 foreach($matches as $m)
     $array[$m[1]] = $m[2]
夏天碎花小短裙 2024-12-12 19:52:45
$string = '{user type="active" name="james green" id="45" group="active users"}';
$user = simplexml_load_string('<' . substr($string, 1, -1) .'/>');
print_r(current($user));

Array
(
    [type] => active
    [name] => james green
    [id] => 45
    [group] => active users
)

但这应该很容易并且更适合使用正则表达式来解决

$string = '{user type="active" name="james green" id="45" group="active users"}';
$user = simplexml_load_string('<' . substr($string, 1, -1) .'/>');
print_r(current($user));

will give

Array
(
    [type] => active
    [name] => james green
    [id] => 45
    [group] => active users
)

But that should be easy and more appropriate to solve with a Regex.

地狱即天堂 2024-12-12 19:52:45

名字“james green”可以这样提取

<?php
    $point=strpos( $string, 'name="' ) + strlen('name="');
    $string = substr($string,$point);

    $point=strpos( $string, '"' );
    $string = substr($string,$point);

    echo $string; // james green
?>

name "james green" can be extracted like this

<?php
    $point=strpos( $string, 'name="' ) + strlen('name="');
    $string = substr($string,$point);

    $point=strpos( $string, '"' );
    $string = substr($string,$point);

    echo $string; // james green
?>
ぽ尐不点ル 2024-12-12 19:52:45
$string = '{user type="active" name="james green" id="45" group="active users"}';
$string = str_replace('{', '', $string); // delete brackets
$array = explode(' ', $string);

$var = array_shift($array); // <-- here is 'user'

foreach($array as $pair)
{
$arr = explode('=', $pair);
$arr[0]; // <-- here is the key
$arr[1]; // <-- here is the value
}

未测试!

$string = '{user type="active" name="james green" id="45" group="active users"}';
$string = str_replace('{', '', $string); // delete brackets
$array = explode(' ', $string);

$var = array_shift($array); // <-- here is 'user'

foreach($array as $pair)
{
$arr = explode('=', $pair);
$arr[0]; // <-- here is the key
$arr[1]; // <-- here is the value
}

Not tested!

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文