Posts from Swift

Retrieve key from a dictionary in Swift

By Khushi Aswani

When working on a dictionary, mostly we work on its value but sometimes we are required to fetch the key’s value, this tutorial is all about learning different and easy metho.... Read More

Check for String prefix in Swift

By Khushi Aswani

This tutorial is based on the topic prefix which falls under the strings Prefix means working on the starting on the starting part of a string. In this post, we will discuss a few .... Read More

Check for String suffix in Swift

By Khushi Aswani

This tutorial is based on the topic strings to check for its suffix. It means to work on the end part of a string. Here we have described 4 different methods with different outputs.... Read More

Convert all letters of a Swift string to uppercase

By Khushi Aswani

This tutorial is based on the task to convert a given Swift string into uppercase with the help of Swift programming. Sometimes we unknowingly type the text and after analyzing we .... Read More

Swift Array map() method

By Khushi Aswani

There is a method known as map() in Swift which performs the actions on an array in one go. This article is a complete tutorial with examples of map() and its functionality. What d.... Read More

Get the last N characters from a string in Swift

By Faruque Ahamed Mollick

In this tutorial, you will learn how to get the last N characters from a string in Swift with the help of code examples. To find out the last N characters from our Swift string, we.... Read More

Split a string into an array of substrings in Swift

By Khushi Aswani

This tutorial is all about splitting a given string into an array of substrings in Swift. Here we are provided with a string where we need to find its subsequences. There is a meth.... Read More

Convert Comma Separated String into Array in Swift

By Khushi Aswani

As you might have guessed from the topic, today we are going to convert a comma-separated string into an array in Swift. In the previous tutorial, we learned how to convert array t.... Read More

Related Posts