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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 17, 20262026-06-17T19:08:41+00:00 2026-06-17T19:08:41+00:00

I have a string. The string can contain spaces, Latin characters and symbol $.

  • 0

I have a string. The string can contain spaces, Latin characters and symbol $.

Example: tert ertert$sdfsdf

But, symbol $ must be surrounded only with characters, not spaces.

Good string: "teststring$sdfsdf"

Bad string: "test $sdfsdf"

Bad string "test $ string"

How can i make regular expression for this string?

Thank you

  • 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-17T19:08:42+00:00Added an answer on June 17, 2026 at 7:08 pm

    Not sure what language you need this for, but this will work /\s+\$|\$\s+/ to match the “bad” scenario.

    The logic is

    \s+ //at least one space
    \$  //follow by a dollar sign
    |  // or
    \$ //dollar sign
    \s+ followed by at least one space
    

    So, if this were Java it would look like:

    myString.matches("\\s+\\$|\\$\\s+")
    

    In Perl, it would be:

    if(myString =~ m/\s+\$|\$\s+/){
       //found bad example
    }
    

    I recommend asking more specifically for a language example cause these do tend to vary a bit from use to use.

    Also, the people on this site tend to feel that you should have tried to solve this on your own before coming here for help. So, if you want to avoid seeing snarky comments about what have you already attempted, you should offer your failed attempts as a sacrifice to the petulant forces that be :). Just asking “how do I do this” does leave the person answering with a quandary as to “where do I begin… what do you already know, where are you actually stuck, etc.”.

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

Sidebar

Related Questions

I have to store a string (non-numeric, can contain any UTF8 Chars) in a
I have an application where users can upload files whose name can contain non-latin
So I have an IEnumerable<string> which can contain values that can be parsed as
We have a string field which can contain XML or plain text. The XML
I have string variable that contain price. For example, 10000 . I want use
I have a variable that can either contain a list of strings or a
If I have a hashmap containing the following: Hashmap contains (String, String) How can
I have a Version class that contains a version_number string, and can obtain a
I have variable WCHAR sDisplayName[1024]; How can I check if sDisplayName contains the string
I have string: You can vote 36 times for topics and 84 times for

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.