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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 25, 20262026-05-25T21:47:11+00:00 2026-05-25T21:47:11+00:00

I need validate a String using a Regular Expression, the String must be like

  • 0

I need validate a String using a Regular Expression, the String must be like “createRobot(x,y)”, where x and y are digits.

I have Something like

    String ins; 

    Pattern ptncreate= Pattern.compile("^createRobot(+\\d,\\d)");
    Matcher m = ptncreate.matcher(ins);
    System.out.println(m.find());

but doesn’t work

Can you help me ?.

Thanks.

  • 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-25T21:47:12+00:00Added an answer on May 25, 2026 at 9:47 pm

    You forgot the word Robot in your pattern. Also, parenthesis are special characters in regex, and the + should be placed after the \d, not after a (:

    Pattern.compile("^createRobot\\(\\d+,\\d+\\)$")
    

    Note that if you want to validate input that should consist solely of this "createRobot"-string, you mind as well do:

    boolean success = s.matches("createRobot\\(\\d+,\\d+\\)");
    

    where s is the String you want to validate. But if you want to retrieve the numbers that were matched, you do need to use a Pattern/Matcher:

    Pattern p = Pattern.compile("createRobot\\((\\d+),(\\d+)\\)");
    Matcher m = p.matcher("createRobot(12,345)");
    if(m.matches()) {
      System.out.printf("x=%s, y=%s", m.group(1), m.group(2));
    }
    

    As you can see, after calling Matcher.matches() (or Matcher.find()), you can retrieve the nth match-group through group(n).

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

Sidebar

Related Questions

Possible Duplicate: Using regular expression within a stored procedure I need to validate a
I need to validate following string using Regular Expressions. These are the constraints which
I am attempting to parse a string like the following using a .NET regular
i am using asp.net 3.5 and VB.net, i need a validation expression to validate
I have a text field which I need to validate using a regex. My
I need to validate an XML string (and not a file) against a DTD
I need to be able to validate a string against a list of the
I need a regex or a function in PHP that will validate a string
i need to validate this type of string 0415256987, 0452 654 987, 0411 236589,
I need to validate Textbox input as credit card number. I already have regex

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.