Skip to content

Instantly share code, notes, and snippets.

View sreubenstone's full-sized avatar
💭
Nestomiring

Steven Reubenstone sreubenstone

💭
Nestomiring
  • New York
View GitHub Profile
@sreubenstone
sreubenstone / regex.js
Created January 29, 2019 19:43
regex-sr
const string = '4%4%15%30%33%'
const fixed = string.replace(/%/g, ' ');
console.log(fixed)
const array = fixed.split(' ')
console.log(array)