Skip to content

Latest commit

 

History

History
13 lines (8 loc) · 487 Bytes

File metadata and controls

13 lines (8 loc) · 487 Bytes

সকল নাম্বার খুঁজুন

সকল ডেসিমেল (পূর্ণ সংখ্যা এবং ঋণাত্নক) সংখ্যা খুঁজার একটি রেগুলার এক্সপ্রেশন লিখুন।

উদাহরণস্বরুপ:

let regexp = /  ি/g;

let str = "-1.5 0 2 -123.4.";

alert( str.match(regexp) ); // -1.5, 0, 2, -123.4