{

Multiple ways to create an array filled with repeated values in the swift example


 create an array filled with repeated values swift with example

This tutorial shows you multiple ways to create an array with the same values in an array of Swift for example.

It is very useful to initialize repeated values in Development to learn and test array methods.

How to create and initialize an array with the same values?

There are multiple ways we can do this.

It uses repeating and count syntax to create an value

repeating is a repeating value in an array. count is multiple times to repeat in the array.

Here is an example of creating an array same value multiple times.

// Generate an array with zero value repeated 5 times
var numbers = Array(repeating: 0, count:5)
print(numbers)
// Generate an Int array with zero value repeated 5 times
var numbers1 = [Int](repeating: 0, count:5)
print(numbers1)
// Generate an Float array with 1.0 value repeated 5 times
var numbers2 = [Float](repeating: 1, count:5)
print(numbers2)

Output:

[0, 0, 0, 0, 0]
[0, 0, 0, 0, 0]
[1.0, 1.0, 1.0, 1.0, 1.0]

The above example generates an Integer, Float array with the same values

Let’s see an example to create an array, assigned with the same string for multiple values.

// Generate an array with same string value repeated 5 times
var strArray = Array(repeating: "one", count:5)
print(strArray)

Output:

["one", "one", "one", "one", "one"]

Summary

In this tutorial, You learned a create and initialize an array with the same or repeated values using multiple ways.

THE BEST NEWSLETTER ANYWHERE
Join 6,000 subscribers and get a daily digest of full stack tutorials delivered to your inbox directly.No spam ever. Unsubscribe any time.

Similar Posts
Subscribe
You'll get a notification every time a post gets published here.