- Most Wanted Bounty Winner
- Sold between 250 000 and 1 000 000 dollars
- Has been a member for 5-6 years
- Repeatedly Helped protect Envato Marketplaces against copyright violations
- Won a Competition
- Bought between 100 and 499 items
- Exclusive Author
- Referred between 200 and 499 users
Is there any function in js which removes the characters you sliced from the given string? For example:
var initVal = 'removeMEremoveME'; var tempVal = initVal.slice(initVal.lastIndexOf(['removeME']));
After running this, these are the things that i’m looking for:
initVal = 'removeME'; tempVal = 'removeME';
This is what i get instead:
initVal = 'removeMEremoveME'; tempVal = 'removeME';
The original initVal stays the same since you never actually change it. Why not just do:
var initVal = 'removeMEremoveME'; var tempVal = initVal.slice(initVal.lastIndexOf(['removeME'])); initVal=tempVal;
- Most Wanted Bounty Winner
- Sold between 250 000 and 1 000 000 dollars
- Has been a member for 5-6 years
- Repeatedly Helped protect Envato Marketplaces against copyright violations
- Won a Competition
- Bought between 100 and 499 items
- Exclusive Author
- Referred between 200 and 499 users
Because in reality:
initVal = 'removeMEremoveMEremoveMEremoveMEremoveME';
And when i do your equality, my initVal is stripped down of all of the “removeME”s .. I need to remove them one by one..
I see, i didnt get that from the original post.
Well, you could do something like this: jsfiddle
Its not exactly elegant, but i think its ok to build upon.
- United States
- Has been a member for 4-5 years
- Exclusive Author
- Author was Featured
- Sold between 50 000 and 100 000 dollars
- Item was Featured
- Contributed a Tutorial to a Tuts+ Site
- Author had a Free File of the Month
var initVal = 'removeMEremoveMEremoveMEremoveMEremoveME',
removeMes = initVal.split('removeME').join('|removeME').split('|'),
tempVal;
removeMes.shift();
while(removeMes.length) {
removeMes.shift();
tempVal = removeMes.toString().split(',').join('');
console.log(tempVal);
}
Traces:
removeMEremoveMEremoveMEremoveME removeMEremoveMEremoveME removeMEremoveME removeME
