I am looking to create a reg ex in JS that obtains 2 values from a string:
The string is always in the following format value1[value2].
what is the best way to do this?
|
I am looking to create a reg ex in JS that obtains 2 values from a string: The string is always in the following format what is the best way to do this? |
|||||
|
Explanation
|
||||
|
|
|
|||
|
|
Of course, if you are sure that your input is already validated then you can simply extract values by index, which should be the fastest:
|
||||
|
|
|
I would think that the most readable regex expression would be something along the lines of:
Simply returning the results you are interested in. Alexander's answer would certainly work, but I personally find excessive use of brackets and slashes to be very hard to read. |
||||
|