Want to become a Vibe Coder? Join Vibe Coding Training here
x
C# Corner
Tech
News
Videos
Forums
Jobs
Books
Events
More
Interviews
Live
Learn
Training
Career
Members
Blogs
Challenges
Certification
Contribute
Article
Blog
Video
Ebook
Interview Question
Collapse
Feed
Dashboard
Wallet
Learn
Achievements
Network
Refer
Rewards
SharpGPT
Premium
Contribute
Article
Blog
Video
Ebook
Interview Question
Register
Login
Tags
No tag found
Content Filter
Articles
Videos
Blogs
Resources
News
Forums
Interviews
Complexity Level
Beginner
Intermediate
Advanced
Refine by Author
[Clear]
Mahesh Chand(9)
Kirtesh Shah(5)
Sanwar Ranwa(4)
Hemant Jindal(4)
Jitendra Mesavaniya(3)
Nandan Hegde(2)
Khoday Akilesh(2)
George (2)
Ziggy Rafiq(2)
Sai Kumar Koona(2)
Rohit Gupta(2)
Jignesh Trivedi(2)
Dashrath Hapani(1)
Subarta Ray(1)
Aakash Chhillar(1)
Manoj Kalla(1)
Onkar Sharma(1)
Swesh S(1)
Aman Gupta(1)
Rajeev Kumar(1)
Vijay Yadav(1)
Ajay Kumar(1)
Jaimin Shethiya(1)
Ashutosh Singh(1)
Raja Msr(1)
Naresh Beniwal(1)
Deepak Tewatia(1)
Jignesh Kumar(1)
Uday Dodiya(1)
Sachchi Prajapati(1)
Ramasagar Pulidindi(1)
Munib Butt(1)
Yogeshkumar Hadiya(1)
Mukesh Sagar(1)
Shivam Payasi(1)
Deepak Kumar(1)
Uttam Kumar(1)
Jayant Kulkarni(1)
Jay Pankhaniya(1)
Muhammad Imran Ansari(1)
Sangeetha S(1)
Arun Potti(1)
Sharadendu Dwivedi(1)
Dhimant Patel(1)
Ganesan C(1)
Sriganapathi Sekar(1)
Ayushi Omray(1)
Harshal Limaye(1)
Nikunj Satasiya(1)
Vijay Kumari(1)
Parth Doshi(1)
Chandresh Pansuriya(1)
Bohdan Stupak(1)
Sanjay Makwana(1)
Alessandro Del Sole(1)
Sarvesh Shinde(1)
Satyajit Paul(1)
Atul Sharma(1)
Mukesh Kumar(1)
Farhan Ahmed(1)
Code Alone (1)
Pradeep S(1)
Akash Kumhar(1)
Vinod L(1)
Viral Jain(1)
Sivasankar Gorantla(1)
Khumana Ram(1)
Rafnas T P(1)
Bryian Tan(1)
Pankaj Kumar Choudhary(1)
Madhanmohan Devarajan(1)
Akshay Phadke(1)
Rion Williams(1)
Resources
No resource found
Mastering SQL String Functions
Mar 25, 2025.
SQL string functions help manipulate and process text data efficiently. This guide covers key functions like UPPER(), LOWER(), LEN(), LEFT(), RIGHT(), SUBSTRING(), REPLACE(), CONCAT(), LTRIM(), RTRIM(), CHARINDEX(), REVERSE(), and FORMAT(), demonstrating their usage with examples to improve query performance and readability.
How To Find All Possible Subsets of a String Using C#
Jan 16, 2025.
This article covers step-by-step implementation, explaining algorithms like recursion and iteration to generate subsets effectively. Perfect for beginners and developers, enhance your string manipulation and problem-solving skills in C#.
Implementation of String Manipulation in C# 9.0
Dec 29, 2024.
Explore various string manipulation techniques in C# 9.0, including concatenation, searching, replacing, and more. Learn how to leverage these methods to write cleaner and more efficient code.
How to Reverse a String in Java
Dec 24, 2024.
Reversing a string in Java is a common task that involves reversing the order of characters in a string. For example, "Hello" becomes "olleH". To accomplish this in Java, we can use the StringBuilder class, which allows us to efficiently manipulate and reverse strings.
How To Count Occurrence Of Each Character From The String In C#
Dec 21, 2024.
Learn how to count the occurrence of each character in a string using C#. This guide covers step-by-step instructions to efficiently analyze strings and determine the frequency of individual characters.
How To Remove Duplicate Characters From String In C#
Dec 18, 2024.
Learn how to remove duplicate characters from a string in C# with simple and effective methods. it will cover various approaches, including using loops, LINQ, and HashSet, to streamline string manipulation.
Connection String in ASP.NET Core MVC .NET 8
Dec 13, 2024.
Learn how to manage and use connection strings in applications, explore AppSettings.json, environment variables, and static classes, and understand their implementation with sample code for seamless database connectivity.
Character Occurrence in a String in C#
Dec 13, 2024.
In this article, I will discuss how to count the number of occurrences of a character in a string in C# with Examples. This article explores various ways to count character occurrences in a string using C#, including loops, dictionaries, and LINQ techniques, with detailed examples and practical explanations.
Palindrome String Program in C#
Dec 04, 2024.
Explore how to determine if a string is a palindrome in C#. Learn the concept and examples, and implement a simple solution to check palindrome strings for interview preparation.
How to Reverse a String in C#?
Dec 03, 2024.
Explore four methods to reverse a string in C#: using string.Reverse(), Array.Reverse(), for loop, and foreach loop. Ideal for interview preparation with practical examples and outputs.
Hidden Gems - Converting the Table Response Into String Variable
Oct 03, 2024.
Discover the hidden gems and best practices for effectively handling data within Microsoft Copilot. Enhance your AI-driven applications by learning essential techniques for data manipulation and integration.
Centralizing String Utility Functions in Java
Aug 27, 2024.
This article explains how to consolidate common string utility functions in Java by creating a utility class like StringUtils. It covers methods for checking if a string contains only alphanumeric characters with underscores and if a string consists solely of letters, improving code organization and reusability.
How to Get Only Letters from a String in C#?
Aug 05, 2024.
Learn how to extract only the letters from a string in C# using various methods. This guide covers techniques such as using regular expressions, string manipulation methods, and LINQ to filter out non-letter characters.
Get Index Position of Nth Occurrence of a Character in String in Azure Data Factory
Jul 12, 2024.
In this article, we will learn how to efficiently locate the index position of the Nth occurrence of a specific character within a string using Azure Data Factory.
Split a String into an Array of Characters with No Delimiter in Azure Data Factory
Jul 09, 2024.
Explore splitting strings into character arrays without delimiters using Azure Data Factory or Synapse Pipeline with sequential For Each iterations and the Substring function for precise character extraction. Ideal for structured data processing in cloud environments.
How to Convert varbinary to Base64 String in SQL Server
Jul 03, 2024.
Learn how to convert varbinary data to Base64 strings in SQL Server using XML functions and the CAST method. This tutorial provides clear steps and SQL examples for encoding binary data, crucial for web applications needing text-based transmission of images and files.
Comparing Performance: Regex vs String Methods in C#
Jun 27, 2024.
In C#, developers choose between Regex and string methods for manipulating strings. String methods are faster and more readable for simple tasks, while Regex excels in handling complex patterns and advanced text processing.
Difference between String & StringBuilder in .NET C#
Jun 05, 2024.
In .NET C#, String is immutable, meaning any modification creates a new instance, which can be inefficient for frequent changes. StringBuilder is mutable, designed for dynamic string manipulation without creating new instances.
Verbatim String Literals vs Raw String Literals in C#
May 27, 2024.
String handling is a crucial aspect of programming, and C# provides multiple ways to manage strings effectively. This article compares verbatim string literals and raw string literals, highlighting their features, use cases, and differences.
How to Modify String in C# .NET
May 03, 2024.
This article demonstrates several techniques to produce a string by modifying an existing string. You can examine the original string and the new, modified string when you run each example.
Exploring String Searching Techniques in C#
May 02, 2024.
Searching for substrings within strings is a fundamental operation in software development, and in the context of C# programming, there are several techniques and methods available to accomplish this task efficiently. In this article, we will explore various string searching techniques in C#.
Concurrent Dictionary for String Comparison in .NET Core
Apr 20, 2024.
In .NET Core, the `ConcurrentDictionary<TKey, TValue>` class provides a thread-safe collection for storing key-value pairs, making it suitable for concurrent operations in multi-threaded environments. When it comes to comparing two strings concurrently, we can leverage ConcurrentDictionary along with appropriate methods to achieve efficient
How to Extract Initials from a String in Vue.js
Mar 06, 2024.
To extract initials from a string in Vue.js, you can create a custom filter or method. Define a filter or method to process the string and return the initials, providing flexibility in implementation.
Reverse String Filter in Vue.js
Mar 06, 2024.
To reverse a string in Vue.js, create a custom filter that reverses the characters. Define the filter, register it globally, and apply it in Vue component templates for efficient string reversal.
Reverse String Pipe in Angular
Dec 14, 2023.
Learn how to create a custom pipe in Angular to reverse a string. Follow the steps to generate a pipe, implement the logic, and use it in your Angular application.
How to Extract Initials from a String in Angular
Dec 13, 2023.
In this article, we will learn how to extract initials from a string.
How to use Power Automate to split a string into an array
Nov 06, 2023.
This article explains how to turn a string into an array using the Power Automate split function.
Convert String to JSON using Power Automate Microsoft Flow
Oct 18, 2023.
Learn to convert a string to JSON in Power Apps. Explore two methods: the JSON expression and the Parse JSON Data Operation, followed by reading the JSON data for effective data manipulation.
How to Get Query String in JavaScript
Aug 22, 2023.
This article will discuss using JavaScript to get Query String from a Web Page.
Convert String into Array in JavaScript
Aug 21, 2023.
Efficiently transform strings into arrays in JavaScript. Explore split() method, custom delimiters, and JSON conversion.
Parse JSON String in C#
Jun 07, 2023.
Code example of how to parse a JSON string in C#
Convert string to JSON in C#
Jun 06, 2023.
Code example of how to convert string to JSON in C#
Convert a JSON object into a string in C#
Jun 03, 2023.
Code example of how to convert an object into a JSON string in C#.
How to Create A JSON String In C#?
Jun 01, 2023.
How to create JSON object in C#
How to Initialize String Array With Default Values In C#
May 04, 2023.
In this article, you will learn about How to initialize string array with default values in C#
How to remove duplicate words from string in C#
Apr 14, 2023.
This article covers all possible methods of removing duplicate words from string in C# with code examples and explanations.
How To Truncate String In C#
Apr 12, 2023.
If you're looking to learn how to truncate a string in C#, then you've come to the right place. This article will provide you with the necessary information to accomplish this task efficiently and effectively. Don't waste any more time searching for answers - read on and become a master of C# string truncation today! By Ziggy Rafiq
How To Split A String Using Backslash As Delimiter In C# With Code Examples
Apr 10, 2023.
Learn how to easily split a string in C# using a backslash delimiter with code examples, courtesy of Ziggy Rafiq's informative article. Master this essential skill today!
Count Number Of Character Occurrences In A String Using JavaScript
Apr 04, 2023.
In this article, I am going to demonstrate various way to count number of character occurrences in a string javascript
Best Algorithm For Encrypting And Decrypting A String In C#
Jan 31, 2023.
In this article, we learn about how to encrypt and Decrypt a String in C#.
Raw String Literals - New Feature In C#11 With .NET 7
Jan 14, 2023.
Microsoft released .NET 7 on 14th November 2022 with C#11. We will look at string literals features of C#11 in this article.
UTF-8 String Literals In C# 11 | Learn C#
Dec 14, 2022.
In this article, you will learn about UTF-8 string literals in C# 11.
Using Multi-Line String Literals In .NET 7
Dec 02, 2022.
In this article, you will learn how to use Multi-line String Literals in .NET 7.
C#11 Features - Raw String Literals
Nov 28, 2022.
Raw String Literals are the new format of string literals introduced since C# 11. This new format can help us in getting the output string with any arbitrary text like new lines, spaces, and special characters without any special sequences.
C#11 Features - Newlines In String Interpolations
Nov 22, 2022.
In C# 11 multiline restrictions got removed and now string interpolation supports multiline expressions too.
Reverse Words In A String In C#
Nov 07, 2022.
Given a string s, reverse the order of characters in each word within a sentence while still preserving whitespace and initial word order.
Search A String Entire Database (SQL Server)
Oct 20, 2022.
Searching a string in all the tables available in the SQL Server database
Raw String Literals In C# 11
Aug 13, 2022.
In this article, I explain the new features related to the raw string literal and also how to enable preview version for c# 11.
Developing A String Type In C
Jun 02, 2022.
You may have noticed that unlike other programming languages such as Java, Python, etc. C does not support string as a primitive (or we can say intrinsic) data type. Strings in C are implemented and manipulated by using character arrays. A string is a sequence of characters that is terminated by a null character.
Safest Way To Convert String To Int In C#
May 03, 2022.
In this article, you will learn about the safest way to convert string to int in c#.
Simple Configuration Of Connection String Through Key Vault
Apr 09, 2022.
Simple Configuration of Connection String through Key vault without any code.
Clean JSON String To Resolve HTML Content And Double Quotes Issue
Feb 28, 2022.
This article contains the solution to resolve the issue of the html content inside the JSON string response and double quotes issue and get the clean JSON object.
How To Convert a List to a String in C#
Jan 28, 2022.
This article for beginners who want to learn, how to convert list of strings into a single string.
How to Convert String Representation Number To Integer In C#
Dec 30, 2021.
C# per-define functions using string representation number to integer conversion.
How To Get The Dynamics 365 CE Connection String In XRMToolBox
Dec 17, 2021.
In this article, you will learn how to get the Dynamics 365 CE Connection String in XRMToolBox.
C# - String Object Impact On Performance
Oct 29, 2021.
In this article, you will learn about C#- String Object impact on performance.
Function Of Tuple, List, String And Dictionary In Python
Oct 20, 2021.
In this article, you will learn about function of tuple, list, string and dictionary in python.
Get String ASCII Value In C#
Oct 03, 2021.
In this article, you will learn about the different ways to get a string ASCII value.
Frequently Used JavaScript String Methods
Aug 06, 2021.
In this article, you will learn about frequently used JavaScript String Methods.
Python Unconditional Statements And String Operations✍️
Jul 01, 2021.
In this article, you will learn about Python Unconditional Statements and String Operations??.
The Forward And Backward Shift String Problem
Jun 21, 2021.
We have a simple problem, we are given a string and we have to check if the new strings formed by forward shift and backward shift are the same or not.
Reverse A String In JavaScript
Feb 15, 2021.
How to reverse a string in JavaScript is one of the most frequently asked interview questions. There could be dozens of ways we could reverse a string. However, in this article, we'll learn three different methods to reverse a string in JavaScript.
Split Alphabets From Alphanumeric String In SQL Server
Feb 03, 2021.
This article gives an explanation about how to split alphabets from the alphanumeric string in an SQL server. Here I'll also explain how to create a function in an SQL server.
How Can We Get Last Characters Of A String In Java?
Jan 25, 2021.
In this article, we will learn about String in Java Programming Language with examples. Explore the intricacies of Java strings, covering their creation using literals or the "new" keyword. Learn methods like charAt() to extract the last character, ensuring a comprehensive understanding through examples.
How To Get The Last N Characters Of A String In Python
Jan 25, 2021.
The articles tell you different ways of finding the last N characters from a String in Python.
Converting Simple JSON String To Data Table Using C# In UiPath
Jan 11, 2021.
In this, article we will be learning how to convert a simple JSON String To Data Table using C# in UiPath.
Working With Query String (Or Query Parameter) In Blazor
Oct 27, 2020.
In this article, you will learn about Query string (or Query Parameter) in Blazor.
Query String In PowerApps URL
Sep 02, 2020.
We can use query string parameters in PowerApps URL and redirect to the specific item directly using the link from an email.
Refactoring String Into a Specific Type
May 15, 2020.
In this article, you will learn about refactoring string into specific types.
Read SharePoint List Item Attachment (image) and Convert Into Base64 String Using CSOM Through App Only Authentication
Apr 09, 2020.
This article will help you to fetch SharePoint list items and convert it to base64 string.
Xamarin.Forms - Useful String Converters for Your Text
Mar 11, 2020.
In this article, I will share some useful string converters for Xamarin.Forms that I use in my daily work to format specific content
Create HTML Table From Delimited String In Microsoft FLOW
Oct 11, 2019.
In this article we will see how to create HTML table from a delimited string using Microsoft FLOW. You can send this html table as an email.
String Algorithm - Program To Validate Given String A Palindrome Permutation
Sep 13, 2019.
This article describes how to build an algorithm to check if the given string is a permutation of palindrome string.
String Algorithm - Validating If String Conversion Requires More Than One Edits
Sep 03, 2019.
This article describes the algorithm to validate how many edits are required to convert one string into another string
String Algorithm - Validating If String Has Unique Characters
Aug 22, 2019.
This article describes an algorithm program to validate if the given string contains unique characters.
Query String Using JavaScript
Aug 20, 2019.
This article explains how to use the query string properties and methods available in JavaScript.
String Algorithm - Check String Permutation
Aug 07, 2019.
This article describes the algorithm to validate if two given strings are permutation combination of each other.
How to use String in Java
Aug 06, 2019.
The tutorial explains everything about String in Java. Learn how to use Java String methods and properties.
How to Convert String To Byte Array in C#
Jun 03, 2019.
The Encoding.GetBytes() method converts a string into a byte array in C#. This article includes a code example of how to convert a C# string into a byte array.
C# String Interning For Efficient String Comparison
Apr 12, 2019.
In this article, we are going to cover String Interning - A very important feature of .NET Framework from the perspective of string comparison.
Top C# String Technical Interview Questions
Apr 01, 2019.
This article will demonstrate you, top 10 C# string technical interview questions and their solutions.
Implementing C# String Array
Jan 28, 2019.
A C# string array is an array of strings. Here are different examples of implementing String Array in C#. C# String Array code examples.
ASP.NET Web API Query String Parameter
Jan 28, 2019.
In this article, we are going to learn query string parameters in ASP.NET Web API.
Extract Part Of A String Array In C#
Jan 27, 2019.
Learn how to get a portion of a string array in C#.In C#, you can extract a portion of a string array using array slicing or LINQ. Here are examples of both methods.
Convert Byte Array To String In C#
Sep 14, 2018.
Learn to convert a C# byte array to a string in C# and .NET Core. Code example included.
Select Random String From An Array In .NET Core and C#
Sep 09, 2018.
This article demonstrates how to pick a random string an array of strings.
Tabular Function To Split A Delimiter-Separated String To Rows With Their Position
Sep 06, 2018.
Split and convert a delimited string to a table with their position in SQL Server. The string contains words separated (delimited) by comma will be split into Table values.
WPF Button Binding String Instead Of Imagesource With Dependency Property
Jun 27, 2018.
Here we are going to see the way to reuse the dependency property created for binding in wpf button. It is not always necessary to create multiple dependency property with different return type. Below steps shows how to reuse the same dependency property for string as well as ImageSource type and this can be applied wherever similar scenario is applicable.
Check If String Contains Substring In JavaScript
Feb 13, 2018.
In this article, learn how to search string or substring in JQuery or JavaScript. JQuery Substring or JavaScript Subscript code example.
List Of Items In Query String From JavaScript And Fetch It In Code Behind In ASP.NET
Jan 02, 2018.
When there is a situation where we have to pass more parameters and it exceeds browser character limit we can consider using JSON Array.
New String Function In SQL Server 2017
Sep 06, 2017.
It requires one separator argument and a minimum of two arguments otherwise it raises an error. All the arguments are implicitly converted to string types and then they are concatenated.
ASP.NET MVC - Using Resource Files To Manage String Constants
Aug 08, 2017.
In this article, we will see how we can save strings in a resource file instead of constants spread all over the application.
Why String Is Immutable
Jun 20, 2017.
A string is a reference data type in C#. A string is a sequential collection of characters that is used to represent text. The value of the String object is the content of the sequential collection of System.Char objects, and that value is immutable (that is, it is read-only).
How To Convert And Bind JSON String In To ASP.NET GridView With C#
Apr 29, 2017.
This article introduces you to converting and binding JSON string into ASP.NET GridView with C#.
Commonly Used Built In String Functions In SQL Server
Apr 25, 2017.
This article illustrates commonly used built in string functions in SQL Server.
Convert DateTime To String Format Using IQueryable
Jan 10, 2017.
In this article, you will learn how to convert DateTime to string (yyyy/mm/dd) format in ViewModel/Whatever class with IQueryable.
Node.js - Query String And API - Day Twelve
Nov 28, 2016.
In this article, you will learn about Query String and API in Node.js.
To Filter SharePoint List View Using Query String Web Part With No Code
Oct 22, 2016.
In this article, we are going to see how the "Query String Filter" Web Part can be used to filter the SharePoint List View Web Part values.
ASP.NET WebAPI Query String Parameters
Sep 29, 2016.
In this article, you will learn about ASP.NET WebAPI query string parameters.
Adventures In String Concatenation - Introducing String Interpolation
Aug 14, 2016.
In this article, you will learn about the string concatenation and interpolation.