如何从这篇文章中找到 googleplay id?

how to find googleplay id from this text?

如何使用 php 从这篇文章中找到 googleplay id?它在 Google 之后 ID:

简称:Coin Dozer – World Tour Google ID:com.gamecircus.CoinDozerWorld 版本:3.6 文件大小:19.31 MB 类别:游戏,赌场

这是示例代码,尚未完成

 $file = "Short Name: Coin Dozer – World Tour Google ID: com.gamecircus.CoinDozerWorld Version: 3.6 File size: 19.31 MB Category: Games, Casino";
    preg_match("/Google ID: (.*)\s/", $file, $match)

您可以使用正则表达式来捕获 Google ID: 之后不是 space 的任何内容(假设 googleplayid 不能包含 space)。

/Google ID: ([^ ]+)/

https://regex101.com/r/lD8qB6/1

<?php
 $file = "Short Name: Coin Dozer – World Tour Google ID: com.gamecircus.CoinDozerWorld Version: 3.6 File size: 19.31 MB Category: Games, Casino";

preg_match("/Google ID: ([^ ]+)/i", $file, $match);

print_r($match); 
/**
 Array
  (
     [0] => Google ID: com.gamecircus.CoinDozerWorld
     [1] => com.gamecircus.CoinDozerWorld
  )
*/

https://eval.in/299290