Load Posts’ individual body content on index starting at char 200 of each post

This should work fine

 if(have_posts()){
    while(have_posts()){
      the_post();
      $content = get_the_content();
      echo substr($content, 200, 20);
    }
 }

File not found.