I have string in the bellow format:
let str = "url(#123456)";
My string have only number contain in it. It can be any where.
I want to extract the number 123456 from the above string.
I am using es6.
I have string in the bellow format:
let str = "url(#123456)";
My string have only number contain in it. It can be any where.
I want to extract the number 123456 from the above string.
I am using es6.