Emmet in Visual Studio Code to add test text with numbers inside incremented

26 views Asked by At

I want to make a list of test emails to test a function

Array("[email protected]", "[email protected]");

I want to make about 2000 entries on this Array with the email addresses including an incrementing number, can I do this easily with Emmet?

1

There are 1 answers

1
SeydEf On BEST ANSWER

You can do it with this script:

Array("test{1..2000}@email.com");