Scripting
>>
Perl
>>
How to split strings with special characters as delimiters
$cn = "ABC|DEF|GEH"; $cd = "|"; @cols = split(/[$cd]/i,$cn);
Please enable JavaScript to view the
comments powered by Disqus.