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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 18, 20262026-05-18T06:28:44+00:00 2026-05-18T06:28:44+00:00

Assuming regex is the best way to do this , I would like to

  • 0

Assuming regex is the best way to do this , I would like to select the first word of :

<div class="name">Bob Marley</div>

and use it to replace the second word in in this div tag:

<div class="message">Hey friend, how are you?</div>

So that the end result equals :

<div class="message">Hey Bob, how are you?</div>

Update

This is a medley of my actual code here. I noticed that when this runs, it just puts the jquery text into my text area rather than actually perform the function. This is probably because I’m drawing from inputs which requre val() and not text in div tags like my above examples suggest.

 $(".me_signup .name").bind("mouseup keyup", function(){
   $(this).siblings('.message').text(function(i,txt) {
        var name = $(this).val().split(' ')[0];
        return txt.replace('friend', name);
    });
 });

This creates a text area with this written in it

function (i, txt) {
    var name = $(this).val().split(" ")[0];
    return txt.replace("friend", name);
}
  • 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-18T06:28:45+00:00Added an answer on May 18, 2026 at 6:28 am

    You should be able to get by without a regex.

    Example: http://jsfiddle.net/2R5kA/

    $('div.message').text(function(i,txt) {
        var name = $('div.name').text().split(' ')[ 0 ];
        return txt.replace( 'friend', name );
    });
    

    If there’s a chance that there may be some leading spaces before the name, then use jQuery’s $.trim() method it first.

    Example: http://jsfiddle.net/2R5kA/1/

    $('div.message').text(function(i,txt) {
        var name = $.trim($('div.name').text()).split(' ')[0];
        return txt.replace( 'friend', name );
    });
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Assuming the input string +123-321+123 345 , using PHP's regex functions I would like
What RegEx would replace a single 'm' letter with (e.g.) a number, assuming that
Assuming network access is sporadic with no central server, what would be the best
Assuming I have only the class name of a generic as a string in
Assuming I have some object like, with LOTS of properties: public class SomeObject {
assuming we have this regex: preg_match('/\b(xbox|xbox360|360|pc|ps3|wii)\b/i' , $string, $matches); now, whenever the regex match
Couldn't find a function for this. I'm assuming I need to use regex? I'm
Assuming such a query exists, I would greatly appreciate the help. I'm trying to
How can I validate a form using regex in codeiginiter. I'd like to check
i'm pretty new on regex, i have learned something by the way, but is

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.