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 am new with RegEx, but it would be very useful to use it for my project. What I want to do in Javascript is this :

I have this kind of string "/this/is/an/example" and I would like to extract each word of that string, that is to say :

"/this/is/an/example" -> this, is, an, example. And then use each word.

Up to now, I did :

var str = "/this/is/a/test"; 
var patt1 = //*/g;
var result = str.match(patt1);
document.getElementById("demo").innerHTML = result;

and it returns me : /,,,,,/,,,/,,/,,,,,

I know that I will have to use .slice function next if I can identify the position of each "/" by using search for instance but using search it only returns me the index of the first "/" that is to say in this case 0.

I cannot find out.

Any Idea ?

Thanks in advance !

See Question&Answers more detail:os

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

1 Answer

Use split()

The split() method splits a String object into an array of strings by separating the string into substrings, using a specified separator string to determine where to make each split.

var str = "/this/is/a/test"; 
var array = str.split('/');
console.log(array);

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