Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8228481
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 7, 20262026-06-07T16:28:18+00:00 2026-06-07T16:28:18+00:00

I am trying to convert this php function function strpos_r($haystack, $needle) { if(strlen($needle) >

  • 0

I am trying to convert this php function

function strpos_r($haystack, $needle)
{
    if(strlen($needle) > strlen($haystack))
        trigger_error(sprintf("%s: length of argument 2 must be <= argument 1", __FUNCTION__), E_USER_WARNING);

    $seeks = array();
    while($seek = strrpos($haystack, $needle))
    {
        array_push($seeks, $seek);
        $haystack = substr($haystack, 0, $seek);
    }
    return $seeks;
}

I have written this python function, but is not working as expected.

def strposR(haystack, needle):
    if strlen(needle) > strlen(haystack):
        sys.stderr.write("length of argument 2 must be <= argument 1")
    seeks = []
    seek = 0
    while seek == haystack.rfind(needle):
        seeks.append(seek)
        haystack = haystack[0:seek]
    return seeks
def strlen(x):
    return len(x)

What I am doing wrong? Any pointers will be much appreciated.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-07T16:28:20+00:00Added an answer on June 7, 2026 at 4:28 pm

    This works for me:

    def strpos_r(haystack, needle):
        positions = []
        position = haystack.rfind(needle)
    
        while position != -1:
            positions.append(position)
            haystack = haystack[:position]
            position = haystack.rfind(needle)
    
        return positions
    

    Also, functions should not really handle input errors for you. You usually just return False or let the function throw an execution error.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Im trying to convert this php function to javascript: function sanitize_words($string,$limit=false) { preg_match_all(/\p{L}[\p{L}\p{Mn}\p{Pd}'\x{2019}]{1,}/u,$string,$matches,PREG_PATTERN_ORDER); return
I'm trying to convert this function into PHP but somehow it does not give
I am trying to convert several php scripts to use the __autoload function. Right
i'm trying to convert this function: function txt(str){ var t=''; var s=unescape(str); var x=Math.round(Math.sqrt(16));
I'm trying to convert this piece of JavaScript which sets a callback in PHP
This must be really simple... Following examples on here and php.net, I'm trying to
I'm trying to convert this adaptive bayesian rating formula into PHP code: see here
I was trying to convert basic Javascript function into PHP, and I saw that
I've been searching my !!! off trying to find a PHP function to convert
Trying to convert this c code into MIPS and run it in SPIM. int

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.