Ask Your Question
1

How can I determine the number of spaces preceding the first character in a JavaScript string?

asked 2023-06-30 21:22:03 +0000

bukephalos gravatar image

edit retag flag offensive close merge delete

1 Answer

Sort by ยป oldest newest most voted
1

answered 2023-06-30 21:42:02 +0000

david gravatar image

You can use the built-in String method match() with a regular expression to find the number of spaces preceding the first character in a JavaScript string. Here's an example:

let str = "    Hello World!";
let numSpaces = str.match(/^\s*/)[0].length;
console.log(numSpaces); // outputs 4

In this example, the regular expression ^\s* matches any number of white space characters (\s*) at the beginning of the string (^). The match() method returns an array containing the matched substring(s). We access the first element of the array ([0]) and get its length to determine the number of spaces.

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 21:22:03 +0000

Seen: 10 times

Last updated: Jun 30 '23