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 8246827
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 7, 20262026-06-07T22:38:13+00:00 2026-06-07T22:38:13+00:00

I have a Gimp plugin that renames files and I needed a replace function.

  • 0

I have a Gimp plugin that renames files and I needed a replace function. Unfortunately TinyScheme that Gimp uses does not have a replace function for strings. I searched a lot but couldn’t find one that worked as a true string-replace. Answer to follow…

  • 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-07T22:38:16+00:00Added an answer on June 7, 2026 at 10:38 pm

    Here is the implementation that I created. Please feel free to let me know if there is a better solution.

    (define (string-replace strIn strReplace strReplaceWith)
        (let*
            (
                (curIndex 0)
                (replaceLen (string-length strReplace))
                (replaceWithLen (string-length strReplaceWith))
                (inLen (string-length strIn))
                (result strIn)
            )
            ;loop through the main string searching for the substring
            (while (<= (+ curIndex replaceLen) inLen)
                ;check to see if the substring is a match
                (if (substring-equal? strReplace result curIndex (+ curIndex replaceLen))
                    (begin
                        ;create the result string
                        (set! result (string-append (substring result 0 curIndex) strReplaceWith (substring result (+ curIndex replaceLen) inLen)))
                        ;now set the current index to the end of the replacement. it will get incremented below so take 1 away so we don't miss anything
                        (set! curIndex (-(+ curIndex replaceWithLen) 1))
                        ;set new length for inLen so we can accurately grab what we need
                        (set! inLen (string-length result))
                    )
                )
                (set! curIndex (+ curIndex 1))
            )
           (string-append result "")
        )
    )
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Hello as maybe you have heard about GIMP or something like that which uses
I have some JPEG files that I can't seem to load into my C#
have 2 questions : A computer with 32-bit address uses 2-level page table (9
I have 3 layered window (like Gimp software). All my JWindow is assigned to
I have image with some object at not solid background. I want to extract
I have code that needs to render regions of my object differently depending on
I have a map designed in Gimp/Adobe. Now i need to use it as
I have 2 models: Pages ------------ Page User S500 John Gimp John WoW John
I have a bunch of PSD files (and more to come) and I want
I have created a png in gimp and I am reading it as bitmap

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.