1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/z-push_ynh.git synced 2024-09-03 18:05:58 +02:00
z-push_ynh/sources/testing/testing-preg_split.php
2014-12-18 18:08:26 +01:00

12 lines
265 B
PHP

<?php
function testing($text) {
print_r(preg_split('/(\s)*(\\\)?\,(\s)*/i', $text));
// print_r(preg_split('/(?<!\\\\)(\,)/i', $text));
}
testing('Test A,Test');
testing('Test A , Test');
testing('Test A , Test B, Test C');
testing('Test A \, Test B');
?>