up vote 2 down vote favorite
share [g+] share [fb]

I'm looking for a way to rotate a string to the left N times. Here are some examples:

Let the string be abcdef

  • if I rotate it 1 time I want bcdefa
  • if I rotate it 2 time I want cdefab
  • if I rotate it 3 time I want defabc
  • .
  • .
  • If I rotate the string its string length times, I should get back the original string.
link|improve this question

feedback

5 Answers

up vote 7 down vote accepted
 $rotated = substr($str, $n) . substr($str, 0, $n);
link|improve this answer
+1..lot simpler :) – codaddict Mar 11 '10 at 9:40
Thanks stereoforg. This works. – gameover Mar 11 '10 at 9:43
3  
Wouldn't work if $n is greater than the length of the string though, would it? – Svish Mar 11 '10 at 9:44
1  
This will return the original string if $n > string length. – Gordon Mar 11 '10 at 9:45
@Gordon, Svish: My N will never exceed string length. – gameover Mar 11 '10 at 9:50
show 4 more comments
feedback
function rotate_string ($str, $n)
{
    while ($n > 0)
    {
        $str = substr($str, 1) . substr($str, 0, 1);
        $n--;
    }

    return $str;
}
link|improve this answer
feedback

There is no standard function for this but is easily implemented.

function rotate_left($s) {
  return substr($s, 1) . $s[0];
}

function rotate_right($s) {
  return substr($s, -1) . substr($s, 0, -1);
}

You could extend this to add an optional parameter for the number of characters to rotate.

link|improve this answer
feedback

Here is one variant that allows arbitrary shifting to the left and right, regardless of the length of the input string:

function str_shift($str, $len) {
    $len = $len % strlen($str);
    return substr($str, $len) . substr($str, 0, $len);
}

echo str_shift('abcdef', -2);  // efabcd
echo str_shift('abcdef', 2);   // cdefab
echo str_shift('abcdef', 11);  // fabcde
link|improve this answer
feedback

Use this code

<?php
    $str = "helloworld" ;
    $res = string_function($str,3) ;
    print_r ( $res) ;
    function string_function ( $str , $count )
    {
    $arr = str_split ( $str );
    for ( $i=0; $i<$count ; $i++ )
    {
      $element = array_pop ( $arr ) ;
      array_unshift ( $arr, $element ) ;
    }
    $result=( implode ( "",$arr )) ;
    return $result;
    }
    ?>
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.