Bir yarışma değil hayır, belli bir regex birinde çalışıyor ama diğer neden bulmaya çalışıyor yerine benim.
(25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)\.(25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)\.(25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)\.(25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)
Bu benim Regex ve ben bunu çalıştırmak için çalışıyorum
127.255.0.0
Ben PHP kullanarak, hiçbir şey elde piton regex kullanarak ben (o ile ilgili bir şey sadece örtmek) yapma am iki aramalar aşağıda, bu maç. Esasen ben Python değil PHP çalışıyor ama neden çalışmak için çalışıyorum.
re.findall(regex, string)
preg_match_all($regex, $string, $matches);
Solution found, it was due to the way that I was iterating through the results, this regex turned them into groups and then it didn't want to print them out in the same way etc etc. Thank you all for your help, it's really appreciated :)