我正在使用适配器从firebase中检索数据,并且想从arraylist中删除重复的值。
这是我的数据结构
<img>
我当前的输出是{“ USA”,“ USA”,“ CANADA”} 我要显示的是{“ USA”,“ CANADA”}
我的代码 //全局
<image>
// oncreate
function firstNumPos($text, $number){
preg_match_all('!\d+!', $text, $match);
foreach ($match[0] as $value) {
if ($value > $number) {
return strpos($text, $value);
}
}
}
echo firstNumPos('20 plus 1000 is not 20000.', 10000);