Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
menu search
person
Welcome To Ask or Share your Answers For Others

Categories

I have string like fullData1 upto fullData10 in this i need to separate out the integers and text part. how do I do it using javascript.

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
128 views
Welcome To Ask or Share your Answers For Others

1 Answer

Split your string into an array by integer:

myArray = datastring.split(/([0-9]+)/)

Then the first element of myArray will be something like fullData and the second will be some numbers such as 1 or 10.

If your string was fullData10foo then you would have an array ['fullData', 10, 'foo']

You could also:

  • .split(/(?=d+)/) which will yield ["fullData", "1", "0"]

  • .split(/(d+)/) which will yield ["fullData", "10", ""]

  • Additionally .filter(Boolean) to get rid of any empty strings ("")


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
...