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

  • Home
  • SEARCH
  • 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 8927553
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 15, 20262026-06-15T08:14:39+00:00 2026-06-15T08:14:39+00:00

I am writing a program that reads a string then searches for certain keywords,

  • 0

I am writing a program that reads a string then searches for certain keywords, like “cat”, and replaces it with “dog”. I am just unsure as how to start it. What code will I have to use?

  • 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-15T08:14:41+00:00Added an answer on June 15, 2026 at 8:14 am

    For 8-bit characters it’s broadly like this, there are many ways to implement it:

    1. Set si to point to the first character of the string.

    2. mov al,[si]

    3. repnz scasb to find the first match of the first character.

    4. Store the address somewhere.

    5. Set di to point to the first character of the replacement string ('dog' in this case).

    6. Set cx/ecx/rcx to string length.

    7. repz cmpsb

    8. Check that cx/ecx/rcx is zero and last characters match.

    9. If yes, it’s a match, so copy 'dog' to the address stored with rep movsb (set pointers si and di first). Do note that this approach only works if the replace string is no longer than the original string. If it’s longer, you may need to reserve a new block of memory to avoid a buffer overflow. If it’s not a match, backtrack si to the stored address, increment si by 1 (by 2 for 16-bit characters), and jump to 2. (mov al,[si]). You need to also check here when you have reached the end of the string.

    10. Ready. Or, if you want to replace all, as in sed s/cat/dog/g, loop from 1, set pointer (si) first (depending on how you want your regex engine to work).

    For UTF-8 (16-bit characters) replace the following: scasb -> scasw, cmpsb -> cmpsw, movsb -> movsw, al -> ax.

    For 32-bit code, replace all references to si with esi and all references to di with edi.

    For 64-bit code, replace all references to si with rsi and all references to di with rdi.

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

Sidebar

Related Questions

I am writing a program that reads the input from a file and then
I am writing a program that read string and integers from file, then copy
I'm writing a program that reads huge file (3x280 GB) and does a fitting
I'm writing a program that lets the user input 6 temperature readings, and then
I am writing a program that downloads images to the hard drive and then
I am writing a program that reads '.exe' files and stores their hex values
I am working on a program that reads in from a serial port, then
I'm writing a program that reads a text file of city names into a
I am writing a program that reads the first 20 lines of a text
I was writing a program that tell the user to input a random string,

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.