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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 23, 20262026-05-23T19:52:47+00:00 2026-05-23T19:52:47+00:00

I am trying to match a string in an input field using a regular

  • 0

I am trying to match a string in an input field using a regular expression /[1-9][a-zA-Z]/ and insert it into a <p> tag using jQuery.

I modified this example from the jQuery API docs to include the following if statement. When I type ‘1A’ in the input field it works, however I want to exclude the rest of the string so that the <p> only includes the matched string portion.

    $("input").keyup(function () {

            if($(this).val().match(/[1-9][a-zA-Z]/)){
               var value = $(this).val();
            };

      $("p").text(value);
    }).keyup();

Did I explain that clearly? Could anyone point me in the right direction?

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-23T19:52:48+00:00Added an answer on May 23, 2026 at 7:52 pm

    So what you are doing in the above code is that if the value of the input field matches the regular expression, you assign its value to <p> tag. Since, you want to assign the matched string to the <p> tag, you should do:

    $("input").keyup(function () {
            var match = $(this).val().match(/[1-9][a-zA-Z]/);
            if(match){
               var value = match[0]; // Your problem was here
            };
    
      $("p").text(value);
    }).keyup();
    

    The match method of a String returns an array containing the match if it passed or undefined if the match failed.

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

Sidebar

Related Questions

first, this is using preg. String I'm trying to match: aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa b c d
I'm trying to match a C/C++ function definition using a fairly complex regular expression.
I m trying to match unicode characters in Java. Input String: informa String to
Hey, I've been trying to figure out why this regular expression isn't matching correctly.
I'm trying to read input from the terminal. For this, I'm using a BufferedReader.
I am trying to match a string only if it is not part of
I'm trying to match the whole string and not just part of it. For
I'm trying to match the following items in the string pcode : u followed
I'm trying to match chunks of JS code and extract string literals that contain
I am trying to delete part of a string that does not match my

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.