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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 10, 20262026-06-10T14:45:04+00:00 2026-06-10T14:45:04+00:00

In JavaScript, what would be the regular expression for a number followed by a

  • 0

In JavaScript, what would be the regular expression for a number followed by a word? I need to catch the number AND the word and replace them both after some calculation.

Here are the conditions in a form of example:

123 dollars => Catch the '123' and the 'dollars'.
foo bar 0.2 dollars => 0.2 and dollars
foo bar.5 dollar => 5 and dollar (notice the dot before 5)
foo bar.5.6 dollar => 5.6 and dollar
foo bar.5.6.7 dollar => skip (could be only 0 or 1 dot)
foo bar5 dollar => skip
foo bar 5dollar => 5 and dollar
5dollar => 5 and dollar
foo bar5dollar => skip
  • Of course 123.555, 0.365, 5454.1 are numbers too.
  • For making things simpler the word is a specific one (e.g
    dollar|euro|yen).

  • OK.. Thank you all… Here is the basic function I made so far:

    var text = “foo bar 15 dollars. bla bla..”;
    var currencies = {
    dollars: 0.795
    };

    document.write(text.replace(/\b((?:\d+.)?\d+) *([a-zA-Z]+)/, function(a,b,c){
    return currencies[c] ? b * currencies[c] + ‘ euros’ : a;
    }
    ));

  • 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-10T14:45:05+00:00Added an answer on June 10, 2026 at 2:45 pm

    Try this:

    /\b(\d*\.?\d+) *([a-zA-Z]+)/
    

    That will also match stuff like .5 tests. If you don’t want that, use this:

    /\b((?:\d+\.)?\d+) *([a-zA-Z]+)/
    

    And to avoid matching “5.5.5 dollars”:

    /(?:[^\d]\.| |^)((?:\d+\.)?\d+) *([a-zA-Z]+)/
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I would like to a regular expression to use with javascript replace function that
In javascript, how would I use a regular expression to replace everything to the
Im a javascript newbie and would need some help with this simple thing... I
I'm trying to work out what regular expression I would need to take a
Consider the following Javascript regular expression matching operation: class1 MsoClass2\tmsoclass3\t MSOclass4 msoc5.match(/(^|\s)mso.*?(\s|$)/ig); I would
I am trying to create a regular expression that would easily replace an input
This is the PHP regular expression I would like to convert into a JavaScript
I would like a JavaScript regular expression that will match time using the 24
I would like to write a regular expression in javascript to match specific text,
I would like to create a regular expression in javascript to validate the annual

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.