mirror of
https://github.com/YunoHost-Apps/z-push_ynh.git
synced 2024-09-03 18:05:58 +02:00
11 lines
No EOL
261 B
PHP
11 lines
No EOL
261 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'); |