+ 3
How does second regex works in the following code?
So I understand the first expression for capturing values between brackets but how does second one works with ".+" ,what does it mean? var a="matrix(0.44,0,0,0.45,0,0)".match(/\(([^)]+)\)/) var b="matrix(0.44,0,0,0.45,0,0)".match(/\((.+)\)/)
1 ответ
+ 2
@Bagon thank you :)