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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 31, 20262026-05-31T12:31:51+00:00 2026-05-31T12:31:51+00:00

This is the string: -random text- $0.15 USD What I want to extract is

  • 0

This is the string: “-random text- $0.15 USD”

What I want to extract is the “0.15” behind, excluding the $ and USD. So the text will only contain “0.15” with all other words gone.

How do I go about doing this?

Thanks in advance 🙂

  • 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-31T12:31:52+00:00Added an answer on May 31, 2026 at 12:31 pm

    Using regexes

    string str = "-random text- $0.15 USD";
    
    Regex rx = new Regex(@"(?<=\$)[0-9]+\.[0-9]+(?= USD$)");
    var res = rx.Match(str);
    
    if (res.Success) {
        var res2 = res.ToString();
    }
    

    The “main” part is [0-9]+\.[0-9]+ (one or more digits followed by a . followed by one or more digits). This expression must follow a $ sign (?<=\$) and must be followed by USD (there is a space before USD) plus end of string (?= USD$).

    Online test: http://regexr.com?30aot

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

Sidebar

Related Questions

In this string: <0> <<1>> <2>> <3> <4> I want to match all instances
In my string xml file I have a line like this: <string name=infoHeader>random text
I have some random string, let's say : s = This string has some
I have the following string: const char *str = \This is just some random
I've tried this: string newScript = textBox1.Text; HtmlElement head = browserCtrl.Document.GetElementsByTagName(head)[0]; HtmlElement scriptEl =
I want to remove all strange characters from a string to make it url
I want to do something like this in Ruby I have a text like
Let's say I have the string: hello world; some random text; foo; How could
I have an input of a random string of twelve characters like this: ABABABABABAB
I have a large string, where there can be specific words (text followed by

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.