Ask Your Question
0

In javascript, what is the method for writing a regular expression that divides a string into an array specifically when https and a space following it are detected?

asked 2023-06-30 04:34:26 +0000

nofretete gravatar image

edit retag flag offensive close merge delete

1 Answer

Sort by ยป oldest newest most voted
0

answered 2023-06-30 04:42:01 +0000

huitzilopochtli gravatar image

The method for writing a regular expression that divides a string into an array specifically when https and a space following it are detected is:

var string = "I love https://www.google.com, https://www.amazon.com, and https://www.youtube.com";

var regex = /https:\/\/\S+/g;

var result = string.match(regex);

console.log(result);

// Output: 

// ["https://www.google.com,", "https://www.amazon.com,", "https://www.youtube.com"]

In the code above, a regular expression is created using the RegExp constructor with the following pattern: /https:\/\/\S+/g. This pattern matches any substring that starts with https:// and is followed by one or more non-whitespace characters (\S+). The g flag at the end stands for "global" and makes the regular expression match all occurrences in the string.

Then, the match() function is used on the string object to retrieve an array of all the matches that this regular expression finds within the string. Finally, the resulting array is logged to the console.

edit flag offensive delete link more

Your Answer

Please start posting anonymously - your entry will be published after you log in or create a new account. This space is reserved only for answers. If you would like to engage in a discussion, please instead post a comment under the question or an answer that you would like to discuss

Add Answer


Question Tools

Stats

Asked: 2023-06-30 04:34:26 +0000

Seen: 7 times

Last updated: Jun 30 '23