Hi,
i have a problem with a regular expression.
i want to split a string on character pipe | with preg_split php function.
The string is :
"foo|bar|'hello |world\'abc\'de f'|bye"
Result of split must be in an array :
foo
bar
hello|world'abc 'def
bye
Anyone have an idea ?
Thank you !!
bye
i have a problem with a regular expression.
i want to split a string on character pipe | with preg_split php function.
The string is :
"foo|bar|'hello |world\'abc\'de f'|bye"
Result of split must be in an array :
foo
bar
hello|world'abc 'def
bye
Anyone have an idea ?
Thank you !!
bye
Comment