Welcome Guest, Not a member yet? Register   Sign In
splitting string problem
#1

[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
#2

[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;
#3

[eluser]Bigil Michael[/eluser]
thanks




Theme © iAndrew 2016 - Forum software by © MyBB