Hello this is my string
last_name, first_name
bjorge, philip
kardashian, kim
mercury, freddie
in php
i am using preg_match_all
(pcre
) to start regex
process
preg_match_all("/(.*), (.*)/", $input_lines, $output_array);
now i installed pcre on c++ and i want to know what exactly process in c++ pcre that equal my php code? what exactly function in c++ pcre that work like php preg_match_all
?