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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 29, 20262026-05-29T15:12:10+00:00 2026-05-29T15:12:10+00:00

Is it possible to replace a character between two known strings only? I have

  • 0

Is it possible to replace a character between two known strings only? I have a number of files in the format

title.header.index.subtitle.goes.here.footer

I can pick out the “subtitle.goes.here” with pattern matching between the index (which I need to backreference) and a footer (which is constant), but I then want to replace the period/dot character with an underscore, to give me

title.header.index.subtitle_goes_here.footer

So from input such as

title.header.01.the.first.subtitle.is.here.footer

I want to end up with

title.header.01.the_first_subtitle_is_here.footer

What I have so far is useless, but a start:
sed -r 's/([0-9][0-9]\.)([a-z]*\.*)*footer/\1footer/g'

But this is removing the entire subtitle and footer before manually adding it back in and has plenty of other flaws I’m sure. Any help would 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-05-29T15:12:11+00:00Added an answer on May 29, 2026 at 3:12 pm

    This might work for you:

    echo "title.header.01.the.first.subtitle.is.here.footer" |
    sed 's/\./_/4g;s/.\(footer\)/.\1/'
    title.header.01.the_first_subtitle_is_here.footer
    

    An ugly alternative:

    sed 'h;s/\([0-9][0-9]\.\).*\(\.footer\)/\1\n\2/;x;s/.*[0-9][0-9]\.\(.*\).footer/\1/;s/\./_/g;x;G;s/\(\n\)\(.*\)\1\(.*\)/\3\2/' file
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a string -123445. Is it possible to remove the '-' character from
Is it possible to replace a character before a yasnippet is expanded? Say that
Possible Duplicate: Fastest method to replace all instances of a character in a string
I have a replacement problem in VB.NET: I need to replace the character: result
Is it possible in mysql to replace the first character of a cell with
is it posible to replace a character at a specific position within a textarea
Possible Duplicate: Replace words in a string, but ignore HTML Is it possible to
Is it possible to replace the standard broken image via CSS or using another
Is it possible to replace the Mac OS X login window, /System/Library/CoreServices/loginwindow.app, with a
Is it possible to replace all PNGs across the board with GIFs using jquery?

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.