javascript - Extract part of the string - Stack Overflow

I need to extract part of the string while looks like this for example:01. Artist Name - Song TitleSo

I need to extract part of the string while looks like this for example:

01.   Artist Name - Song Title

So I have counter at the beginning, dot and a separator can be anything, currenty separator is:

var separator =    

I want to extract everything after separator.

Using jquery/javascript.

I need to extract part of the string while looks like this for example:

01.   Artist Name - Song Title

So I have counter at the beginning, dot and a separator can be anything, currenty separator is:

var separator =    

I want to extract everything after separator.

Using jquery/javascript.

Share Improve this question edited Aug 17, 2013 at 15:54 Optimus Prime 6,9075 gold badges36 silver badges63 bronze badges asked Aug 17, 2013 at 15:49 ToniqToniq 5,02614 gold badges63 silver badges125 bronze badges
Add a ment  | 

2 Answers 2

Reset to default 11

Just split the string on the separator and pop of the last part :

var lastPart = str.split(separator).pop();

FIDDLE

You could try to use String.split, but I'd suggest using String.indexOf and String.substring to find the first offset of your separator and then select the rest of the string. Using String.split could fail if your name and song title contains the separator internally.

You could also write a regex to split the arguments, which would let you extract the artist and song title separately.

To use indexOf:

var str = "01.   Artist Name - Song Title";
var sep = "   "
var artist_title = str.substring(str.indexOf(sep) + sep.length);
document.getElementById("demo").innerHTML = artist_title;

To use a regex:

var str = "01.   Artist Name - Song Title";
var regex = /(\d+)\.   ([^-]+) - (.*)/
var matches = str.match(regex);
document.getElementById("demo").innerHTML = matches[2] + " : " + matches[3];

发布者:admin,转转请注明出处:http://www.yc00.com/questions/1743650202a4484440.html

相关推荐

  • javascript - Extract part of the string - Stack Overflow

    I need to extract part of the string while looks like this for example:01. Artist Name - Song TitleSo

    1天前
    20

发表回复

评论列表(0条)

  • 暂无评论

联系我们

400-800-8888

在线咨询: QQ交谈

邮件:admin@example.com

工作时间:周一至周五,9:30-18:30,节假日休息

关注微信