CodeIgniter Forums
splitting string problem - Printable Version

+- CodeIgniter Forums (https://forum.codeigniter.com)
+-- Forum: Archived Discussions (https://forum.codeigniter.com/forumdisplay.php?fid=20)
+--- Forum: Archived Development & Programming (https://forum.codeigniter.com/forumdisplay.php?fid=23)
+--- Thread: splitting string problem (/showthread.php?tid=42466)



splitting string problem - El Forum - 06-08-2011

[eluser]Bigil Michael[/eluser]
i want to sptilt the string

SN1001770 into two parts SN and 1001770

can any one help me??
thanks in advance


splitting string problem - El Forum - 06-08-2011

[eluser]adityamenon[/eluser]
Can you explain your problem in full detail? This is just an example. Are you having many strings with different letter prefixes, or is it SN all the time?

Codeigniter doesn't have a native function for this. In this particular case, I would simply remove SN using str_replace()

Code:
$input = 'SN1001770';

$output = str_replace('SN', $input);

echo 'SN '.$output;



splitting string problem - El Forum - 06-08-2011

[eluser]Bigil Michael[/eluser]
thanks