Reputation: 420
I am trying to find some assistance in parsing out and replacing everything after (and including) the 3rd occurrence of a character with some text.
Here is an example of what I need accomplished:
Before: Bob,Jones,Suzy,Amy,Cindy,Jimmy
After: Bob,Jones,Suzy...
Ive gotten thus far:
var theString = ('Bob,Jones,Suzy,Amy,Cindy,Jimmy');
theString = theString.replace('', '...');
Upvotes: 1
Views: 56
Reputation: 784998
You can do split + slice + join
:
var s = 'Bob,Jones,Suzy,Amy,Cindy,Jimmy'
var r = s.split(',').slice(0,3).join(',')
//=> "Bob,Jones,Suzy"
Upvotes: 2