preg_match - 从函数获取数值

发布于 2024-11-26 02:12:57 字数 339 浏览 0 评论 0原文

我正在尝试从 transaction 函数中获取值。

示例:

$response = "transaction(12346675); $('#Tracking').html('<script> random random  random</script>');";

我想获取 12346675 值。那怎么办呢?

我已经尝试过 preg_match('/([\w\_\d]+)\(([\w\W]*)\)/', $response, $match); 但它似乎不起作用。

谢谢

I am trying to get the value from transaction function.

Example:

$response = "transaction(12346675); $('#Tracking').html('<script> random random  random</script>');";

I want to get 12346675 value. How can that be done?

I have tried preg_match('/([\w\_\d]+)\(([\w\W]*)\)/', $response, $match); but it dont seem to work.

Thanks

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

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

发布评论

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

评论(4

总攻大人 2024-12-03 02:12:58

获取第一个单词后面的数字,前提是它括在括号中:

preg_match('/\w+\((\d+)\)/', $response, $match);

Fetching the number after the first word, provided it is enclosed in parentheses:

preg_match('/\w+\((\d+)\)/', $response, $match);
⒈起吃苦の倖褔 2024-12-03 02:12:58

如果您正在查找该行的第一个数字,则无需使用表达式的后半部分来使其复杂化:

preg_match('/(\d+)/', $response, $match);

这是对在该行中找到的第一个数字的简单匹配。

If you're looking for the first number of the line, then there's no need to complicate it with the second half of your expression:

preg_match('/(\d+)/', $response, $match);

This is a simple match for the first number found on your line.

萌辣 2024-12-03 02:12:57
preg_match('/^transaction\((\d+)\)/', $str, $m);
print_r($m);

通用模式:

  • ^\s*\w+\s*\(\s*(\d+)\s*\)
  • 如果函数名称是 PHP 标识符:
    <代码>^\s*[a-zA-Z_\x7f-\xff][a-zA-Z0-9_\x7f-\xff]*\s*\(\s*(\d+)\s*\ )

类似问题请参见:正则表达式帮助,搜索函数名称并返回它们

preg_match('/^transaction\((\d+)\)/', $str, $m);
print_r($m);

Generalized patterns:

  • ^\s*\w+\s*\(\s*(\d+)\s*\)
  • If function name is a PHP identifier:
    ^\s*[a-zA-Z_\x7f-\xff][a-zA-Z0-9_\x7f-\xff]*\s*\(\s*(\d+)\s*\)

For similar question, see: Regex Help, Search for function names and return them

掩饰不了的爱 2024-12-03 02:12:57
reg_match('/\D+\((\d+)\)\.*/', $response, $match);
reg_match('/\D+\((\d+)\)\.*/', $response, $match);
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文