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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 13, 20262026-06-13T19:14:59+00:00 2026-06-13T19:14:59+00:00

I need a regex expression for this any number then . and again number

  • 0

I need a regex expression for this

any number then . and again number and .

So this is valid

1.3.164.1.2583.15.46
546.598.856.1.68.268.695.5955565

but

5..........
...56.5656

are not valid

I tried patterns like:

pattern = "[0-9](\\.[0-9]?*)?*";
pattern = "[0-9](\\.[0-9]?*)?$";
pattern = "[^0-9\\.]";

but none of these fulfill my requirement. Please help?

My existing code is

String PATTERN="\\d+(\\.\\d+)*";
@Override
public void insertString(int arg0, String arg1, AttributeSet arg2)
{

    if(!arg1.matches(this.PATTERN))
        return;

    super.insertString(arg0, arg1, arg2);
}
  • 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-13T19:15:00+00:00Added an answer on June 13, 2026 at 7:15 pm

    Something like this should work:

    (\\d+\\.?)+

    Edit

    Yep, not clear from the description if a final . is allowed (assuming an initial one is not).

    If not:

    (\\d+\\.?)*\\d+ or \\d+(\\.\\d+)* (if that seems more logical)

    Test

    for (String test : asList("1.3.164.1.2583.15.46",
        "546.598.856.1.68.268.695.5955565", "5..........", "...56.5656"))
        System.out.println(test.matches("\\d+(\\.\\d+)*"));
    

    produces:

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

Sidebar

Related Questions

I need a regex expression in C# which can remove any number of double
This sounds simple but my regex knowledge is limited. I need an expression to
I need regular expression (C#) for symbol * - it should match any number
I need the regex expression to remove any text before a match and including
I need a regex to count the number of columns in a pipe delimited
I just need to verify that this regex statement will do what I want.
I need something like this : Regex validSelector = new Regex(^[.#a-zA-Z0-9_:[] ]+[,><a-zA-Z0-9_~=\\:[] ]*$); Has
I have some troubles with this regular expression in javascript. That same regex works
I need to create a regular expression that allows a string to contain any
I need a regex expression that will match the following: .5 0.5 1.5 1234

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.