I have to check the string if it is like as 0.(0).
I am going to use regex for checking that string, but I am not good at regex.
I used regex pattern like below, but it doesn’t work.
const pattern = /0.([0])/
How does the regex should be like?
Blancer.com Tutorials and projects
Freelance Projects, Design and Programming Tutorials
I have to check the string if it is like as 0.(0).
I am going to use regex for checking that string, but I am not good at regex.
I used regex pattern like below, but it doesn’t work.
const pattern = /0.([0])/
How does the regex should be like?