Posts by Khushi Aswani

Author Biographical Info: Python programmer who is also interested in content writing.

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

3 Ways To Concatenate Strings in C++

By Khushi Aswani

This tutorial is a guide to concatenating two strings in C++ by 3 methods. There are in total many ways to do this task but today we will discuss the most useful ones. You can chec.... 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

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

Get the last n elements of an array in Swift

By Khushi Aswani

This tutorial is all about finding the last elements of an array in Swift. This simply means working on the array to fetch the last few elements which is sometimes a crucial task w.... Read More

Intersection of two arrays in Swift

By Khushi Aswani

This tutorial is about finding the common elements in given two arrays in Swift. This can also be called an intersection of two arrays in Swift. For example, our task is to find th.... Read More

Related Posts