Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

c# validate that string contains matching number of brackets

If I have a string like this...

"123[1-5]553[4-52]63244[19-44]"

...what's the best way to validate the following conditions:

  1. Every open bracket has a matching close bracket
  2. There are no more than 3 sets of brackets
  3. There are no nested brackets (i.e., [123-[4]9])

Would a regex be able to validate all of these scenarios? If not, how about LINQ?

like image 544
bmt22033 Avatar asked Feb 22 '13 20:02

bmt22033


People also ask

What C is used for?

C programming language is a machine-independent programming language that is mainly used to create many types of applications and operating systems such as Windows, and other complicated programs such as the Oracle database, Git, Python interpreter, and games and is considered a programming foundation in the process of ...

What is C in C language?

What is C? C is a general-purpose programming language created by Dennis Ritchie at the Bell Laboratories in 1972. It is a very popular language, despite being old. C is strongly associated with UNIX, as it was developed to write the UNIX operating system.

What is the full name of C?

In the real sense it has no meaning or full form. It was developed by Dennis Ritchie and Ken Thompson at AT&T bell Lab. First, they used to call it as B language then later they made some improvement into it and renamed it as C and its superscript as C++ which was invented by Dr.

Is C language easy?

C is a general-purpose language that most programmers learn before moving on to more complex languages. From Unix and Windows to Tic Tac Toe and Photoshop, several of the most commonly used applications today have been built on C. It is easy to learn because: A simple syntax with only 32 keywords.


1 Answers

Because you don't allow nesting, you can use a regex:

^([^[\]]*\[[^[\]]*\]){0,3}[^[\]]*$

Explanation:

  • (...){0,3} matches up to three sets of the following:
    • [^[\]]* matches optional non-bracket characters
    • \[ matches [ to open a group
    • [^[\]]* matches optional non-bracket characters inside the group
    • \] matches ] to close the group
  • Finally, [^[\]]* matches more optional non-bracket characters after all of the groups
like image 184
SLaks Avatar answered Oct 05 '22 23:10

SLaks