0

I am looking to validate an input text against the following pattern in JS/JQuery: <some_string>:<some_string>.

Examples:

  • A110:B120
  • AB12C:B123

I know this might be too naive, but appreciate any help here.

2
  • 2
    please add some examples and the wanted result ... Commented May 11, 2016 at 15:54
  • Based on what you say, you can only validate : and not :, which is ^[^:]+:[^:]+$. Anything more specific and you will miss matches you should get. Commented May 11, 2016 at 16:40

2 Answers 2

1

You could use this:

^[A-Z0-9]+:[A-Z0-9]+$

That will match your examples and any other that has at least 1 character in each side and only has upper case letters and numbers.

You can refer to this answer in order to know how to test a regex against a string.

Sign up to request clarification or add additional context in comments.

1 Comment

Prefer [A-Z0-9]+ to [A-Z0-9]{1,}.
0

Try this

"A110:B120 AB12C:B123".match(/(\w+:\w+)/);

MATCH 
1.  `A110:B120`
2.  `AB12C:B123`

or

"A110:B120".match(/(\w+)+:+(\w+)/);

MATCH 
1.  A110
2.  B120

Comments

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.