Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- const content = String(" Who would you die for? Who would you #lie for, (asd)[https://www.typescriptlang.org/play/?#code/MYewdgz] lie for?\r\nThis ain't the Bible? 'cause I got \"a rifle\", rifle\r\nDon't ever fck with me, 'cause I got enemies, I got enemies\r\nNobody's there for me\r\n\r\nSo, Father, forgive me, for You know that I am always sinnin'\r\nI take no interest, partyin' with liquor, fckin' up my system\r\nExcuse my language, that's a hang-up on how shitty I been feelin'\r\nI'm sorry I feel no attraction, I know that it's been a minute\r\n\r\n'Cause I've been so low for so long\r\nOh-oh, yeah, yeah\r\n'Cause I've been so low for so long\r\nOh, oh-oh, yeah, yeah, yeah\r\n\r\nWho do you ride for? Who do you cry for, cry for?\r\nIt's now or never, gotta keep it together, oh Lord\r\nIt's takin' over me, 'cause I got enemies, I got enemies\r\nNobody's there for me\r\n\r\nSo, Father, forgive me, for You know that I am always sinnin'\r\nI take no interest, partyin' with liquor, fckin' up my system\r\nExcuse my language, that's a hang-up on how shitty I been feelin'\r\nI'm sorry I feel no attraction, I know that it's been a minute");
- console.log(
- content
- .trim()
- .toLowerCase()
- .replace(/[\(\)\[\]]/gi, ' ')
- .replace(/[^a-z0-9\s#:\/\\\.\?"-]/gi, '')
- .replace(/([\?\!]\s)/gi, ' ')
- .replace(/\s+(?=(?:[^\"]*[\"][^\"]*[\"])*[^\"]*$)/g, '_')
- .split('_')
- .filter((v, i, c) => c.indexOf(v) == i)
- .join(' ')
- );
- // who would you die for #lie asd https://www.typescriptlang.org/play/?#code/myewdgz lie this aint the bible cause i got "a rifle" rifle dont ever fck with me enemies nobodys there so father forgive know that am always sinnin take no interest partyin liquor fckin up my system excuse language thats a hang-up on how shitty been feelin im sorry feel attraction its minute ive low long oh-oh yeah oh do ride cry now or never gotta keep it together lord takin over
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement