TECHNOLOGIES
FORUMS
JOBS
BOOKS
EVENTS
INTERVIEWS
Live
MORE
LEARN
Training
CAREER
MEMBERS
VIDEOS
NEWS
BLOGS
Sign Up
Login
No unread comment.
View All Comments
No unread message.
View All Messages
No unread notification.
View All Notifications
C# Corner
Post
An Article
A Blog
A News
A Video
An EBook
An Interview Question
Ask Question
About strings
Share
facebook
twitter
linkedIn
Reddit
Topics
No topic found
Content Filter
Articles
Videos
Blogs
News
Complexity Level
Beginner
Intermediate
Advanced
Refine by Author
[Clear]
Mahesh Chand (11)
Nipun Tomar (4)
Jin Necesario (3)
Gopi Chand (3)
Ashish Shukla (2)
Lokendra Singh (2)
Jitendra Mesavaniya (2)
David Mccarter (2)
Ziggy Rafiq (2)
Uday Dodiya (2)
Yogeshkumar Hadiya (2)
Satendra Singh Bhati (2)
Naveen Kumar (1)
Ishika Tiwari (1)
Jignesh Kumar (1)
Shikha Tiwari (1)
Steven Woolston (1)
Jobin S (1)
Shiv (1)
Vishal Nayan (1)
Vineet Kumar (1)
Vijay Pratap Singh (1)
Mark Pelf (1)
Alpesh Maniya (1)
Anandu G Nath (1)
Arjun Karthikeyan S (1)
Abhishek Yadav (1)
Yatendra Sharma (1)
Praveen Kumar (1)
Sardar Mudassar Ali Khan (1)
Gurpreet Arora (1)
Abdur Rehman (1)
Ravi Mandal (1)
Rinki (1)
Amit Mohanty (1)
Chris Love (1)
Harpreet Singh (1)
Muhammad Imran Ansari (1)
Shweta Lodha (1)
Navin Prakash (1)
Deepak Kumar (1)
Hirendra Sisodiya (1)
Jo Embedded (1)
Vitalii Honcharuk (1)
George (1)
Venkatasubbarao Polisetty (1)
Vijay K (1)
Ranjit Powar (1)
Surya S (1)
Aashina Arora (1)
Gagan Sikri (1)
Yash Ghatge (1)
Dipa Mehta (1)
Abhinav Galodha (1)
Kishor Bikram Oli (1)
Rathrola Prem Kumar (1)
Khawar Islam (1)
Nitin (1)
Jeff Hansen (1)
Muhammad Abdullah (1)
Rahul Bansal (1)
Rajeev Ranjan (1)
Bechir Bejaoui (1)
Arpit Jain (1)
Anubhav Chaudhary (1)
Ashwani Tyagi (1)
Satya Prakash (1)
Manish Tewatia (1)
Sazid Mauhammad (1)
Levent Camlibel (1)
Dipal Choksi (1)
gary sun (1)
Shivprasad (1)
Jalajakshi Venkataramana (1)
Mike Steward (1)
Related resources for strings
No resource found
Exploring the New T-SQL Enhancements in SQL Server 2022
11/5/2024 5:39:41 AM.
In this article we will explore the powerful new T-SQL enhancements in SQL Server 2022, including features like DATE_BUCKET, DATETRUNC, and IS DISTINCT FROM, designed to simplify data handling and opt
Palindrome Check: Normalize Strings in C#
9/30/2024 4:32:32 AM.
Learn essential string manipulation techniques, including whitespace removal, case insensitivity, and character comparison. Weāll provide clear code examples and algorithms to efficiently determine if
Understanding Model Binding in ASP.NET Core with .NET 8
9/17/2024 9:10:14 AM.
Model binding in .NET Core simplifies the process of mapping HTTP request data to action method parameters. It automatically extracts data from various sources like query strings, form submissions, ro
Arrays of Strings in Multidimensional Arrays
9/9/2024 5:39:16 AM.
Multidimensional arrays store data in multiple levels, enabling complex data structures like arrays of strings. This guide explores how to create, access, and manipulate string arrays within multidime
String Replacement With Named String Placeholders
6/14/2024 10:38:51 AM.
The anonymous nature of placeholders in the String.Format method can make it confusing. Find out how to use named string placeholders in your code.
Implementing Model Binding in ASP.NET Core Web API
6/10/2024 8:06:43 AM.
Model binding in ASP.NET Core automates the conversion of HTTP request data into .NET objects, simplifying data transfer between client-side requests and server-side code. It supports various data sou
State Management Techniques in ASP.NET: Part 1
6/6/2024 11:50:05 AM.
State Management Techniques in ASP.NET: Part 1 explores methods like ViewState, Session, and Application state to preserve data between requests, vital for seamless user experience and application fun
Understanding String, StringBuffer and StringBuilder in Java
6/6/2024 4:51:14 AM.
This article delves into the fundamental concepts of String, StringBuffer, and StringBuilder in Java. It explains the differences between these three classes, their specific use cases, and performance
All About AppSettings In ASP.NET Core
6/4/2024 12:49:50 PM.
Learn how to configure ASP.NET Core applications using appsettings.json. This guide covers adding keys for database connections, email settings, and more in the appsettings file. Discover methods to r
Hour 1: Understanding 5 ASP.NET State management techniques in 5 hours
5/31/2024 11:51:15 AM.
Learn the fundamentals of ASP.NET state management in 5 hours. Understand and implement five key techniques: Session State, View State, Application State, Cookies, and Query Strings. This comprehensiv
ASP.NET State Management Techniques Part 2
5/31/2024 10:08:40 AM.
ASP.NET state management techniques include session, application, view state, cookies, query strings, and more. These manage data across requests, enhancing user experience and enabling data persisten
Verbatim String Literals vs Raw String Literals in C#
5/27/2024 9:31:20 AM.
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 th
Understanding ToString() vs Convert.ToString() in C#
5/23/2024 10:30:46 AM.
In C#, both ToString() and Convert.ToString() are used to convert objects to their string representation. However, they have different usages and behavior. Understanding the differences between these
Mastering Python Best Practices for Clean and Efficient Code
5/17/2024 7:10:25 AM.
In Python development, adhering to best practices is paramount for code clarity and efficiency. Embrace PEP 8 guidelines, document with docstrings, use list comprehensions, and handle exceptions judic
Why Strings Are Immutable in .Net
5/1/2024 11:05:35 AM.
Explore the concept of immutable strings in .NET, understanding how strings are allocated in memory, and why they are immutable. Learn how immutability enhances memory management, prevents race condit
Exploring Anagram Strings in C#
4/26/2024 4:21:20 AM.
An anagram of a string is another string that uses the same characters but in a different order. This article delves into solving anagrams using C#, exploring methods like sorting characters, frequenc
Comparing Strings with Globalization and Performance in .NET
4/15/2024 11:44:26 AM.
Efficiently compare strings in .NET considering globalization for culture-aware operations. Optimize performance by selecting appropriate StringComparison and CultureInfo options, ensuring accurate an
Multilingual Application with single Resx file - Forms Validation Strings
4/1/2024 9:37:01 AM.
Learn how to create multilingual applications using ASP.NET 8 in this third part of our series. Explore efficient techniques for managing form validation strings using a single Resx file, ensuring sea
Converting Strings in C#: JSON, Base64, XML, CSV and Reverse
3/22/2024 10:15:42 AM.
Discover Ziggy Rafiq's comprehensive guide on converting strings to JSON, Base64, XML, and CSV formats using C#. Plus, learn how to reverse the process effortlessly. Don't miss out on this mus
How To Split A String Using Backslash As Delimiter In C# With Code Examples
3/20/2024 4:16:50 PM.
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!
String.IsNullOrEmpty() vs String.IsNullOrWhiteSpace()
2/13/2024 10:56:35 AM.
Learn when to use String.IsNullOrEmpty() and String.IsNullOrWhiteSpace() in C#. Understand their differences for effective null and whitespace checks, enhancing data validation and code reliability.
Concatenate Two Strings in C#
1/17/2024 8:36:28 AM.
In C#, string concatenation can be achieved using the + operator, String.Concat method, String.Join method, or string interpolation. Choose the method that suits your coding style and project requirem
Sending SMS Notifications with Azure Communication Services in .NET
1/7/2024 11:35:59 AM.
Learn to send SMS notifications with Azure Communication Service using .NET. Follow simple steps like installing the SDK, importing libraries, setting up connection strings, and sending SMS messages w
6 Effective Ways To Concatenate Strings In C#
10/28/2023 11:56:13 AM.
Code examples of the most effective ways to concatenate strings in C#.
How To Compare Strings In C#
10/10/2023 10:28:12 AM.
Code examples of compare strings in C# using String.Equals, String.Compare, String.CompareTo() method, and StringComparer.
Strings in C# .NET
10/1/2023 1:45:28 PM.
This article provides a brief introduction to Strings in C# .NET.
How To Use Query Strings In ASP.NET
9/25/2023 6:42:41 AM.
In this article, we will learn how to use Query Strings in ASP.NET Websites.
String Interpolation In C#
9/20/2023 6:22:00 AM.
C# String Interpolation concatenates strings. In this article, I'll explain how to implement string Interpolation in C#.
Securing .NET/ASP.NET Core Apps with Azure Key Vault Middleware
9/8/2023 9:28:49 AM.
Securing secrets in a .NET/ASP.NET Core application using Azure Key Vault is crucial for protecting sensitive information like API keys, connection strings, and other configurations. In this example,
Constant Interpolated Strings in C#
8/18/2023 8:17:34 AM.
Explore interpolated strings in C#, a powerful feature for expressive string formatting. Learn about constant interpolated strings introduced in C# 10, enhancing readability and performance. Understan
Converting Strings to Numbers in C#
8/4/2023 6:59:07 AM.
In this article we learn about how to convert string to numbers in c#
Connection Strings for All Databases
7/27/2023 4:40:45 AM.
This article shows step by step different ways to get connection strings for all types of databases. The article is written for all type of users, beginners, intermediate, experienced
Defining and Using Connection Strings in Azure Websites
7/19/2023 9:57:31 AM.
In this article you will learn how to define and use Connection Strings in Azure Websites.
How To Format Strings In C#
7/13/2023 7:05:46 AM.
C# String Format method formats and converts an object into a string. Learn how to use String.Format() method to format strings in C#.
String Operations in Rust: A Beginner's Guide
5/8/2023 5:10:04 AM.
In this article we learn about how to perform string operations in Rust, including reading, manipulating, and transforming strings, through a variety of examples
Globalizing Strings in Microsoft .NET with the Multilingual App Toolkit
5/2/2023 8:56:22 AM.
In this article, I will demonstrate how to do this and introduce you to the Multilingual App Toolkit, which makes string translation fast and cost-effective. It was so simple that I only needed a few
Strings In Rust
4/27/2023 7:19:18 PM.
In this article, we discuss what is a string in Rust, the type of string in Rust, and how to use them.
Using C# 12's Interpolated Strings For More Concise And Readable Code
4/19/2023 5:51:01 AM.
Using C# 12's Interpolated Strings for More Concise and Readable Code
The Ultimate Guide to Converting Strings to Numbers in JavaScript
3/22/2023 1:15:13 AM.
Looking to convert strings to numbers in JavaScript? Our comprehensive guide covers various methods, including type coercion, parseInt, and more! Perfect for software developers.
Basics of JavaScript: Part 4
3/20/2023 7:06:54 AM.
In this article we will learn how to work with strings and numbers.
Compare Comma Seperated Values in SQL
3/9/2023 11:22:41 AM.
In this article, we will see how we can compare the comma-separated values with existing values stored in the table. Values can be in a different order from the user or table. We have to first order i
Convert char array to string in C#
2/21/2023 12:22:11 PM.
How to Convert char array to string using C#. The string class constructor takes an array of characters to create a new string from an array of characters.
How To Convert a List to a String in C#
2/9/2023 9:23:39 AM.
This article for beginners who want to learn, how to convert list of strings into a single string.
Convert Byte Array To String In C#
2/9/2023 8:10:49 AM.
Learn to convert a C# byte array to a string in C# and .NET Core. Code example included.
Padding Strings In C#
2/9/2023 7:48:39 AM.
This code snippet shows how to pad strings in C# and .net core. Padding in the string is adding a space or other character at the beginning or end of a string. String class has String.PadLeft() and St
Uppercase and Lowercase Strings in C#
2/9/2023 7:08:26 AM.
C# String has ToUpper() and ToLower() methods to convert a string to uppercase and lowercase. This sample code demonstrates how to convert a string into lowercase string or uppercase string in C#.
Trim String in C#
2/9/2023 6:23:48 AM.
String.Trim(), String.TrimStart(), and String.TrimEnd() methods provide trim string functionality in C# and .NET. The Trim method removes white spaces from the beginning and endof a string. The TrimE
Connection Strings for SQL Server Compact Edition
1/10/2023 3:17:21 PM.
SQL Server Compact Edition (SQL CE) is a compact relational database produced by Microsoft for applications that run on mobile devices and desktops.
Reverse Words In A String In C#
11/7/2022 6:24:29 AM.
Given a string s, reverse the order of characters in each word within a sentence while still preserving whitespace and initial word order.
Ways To Align Text Strings In Python
9/13/2022 5:49:12 AM.
This article explains about the various ways to align strings in Python.
Working with Strings in VB.NET
8/4/2022 5:59:08 AM.
This article is VB.NET version of Working with Strings in .NET using C#.
Flutter 3 Variable Declaration, Initialization And Discuss With Stringš
6/27/2022 2:05:06 PM.
This article is based on flutter 3 variable declaration and initialization. detailed analysis of strings in dart.
Developing A String Type In C
6/2/2022 12:42:49 PM.
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 m
Verbatim strings in C# - Use of @ symbol in string literals
4/5/2022 12:08:47 PM.
In this article we will understand use of the @ symbol in C# strings.
Introduction To Strings In Python
2/28/2022 1:54:15 PM.
Tackles Python strings' basics and practical use and demonstrates their usages
A Simple Crypto-Safe For Strings In C#
1/18/2022 4:46:49 AM.
Software often has to store small amounts of data locally but with reliable protection. Such a "vault" can be built with a few lines of C#.
Advanced Entity Framework Core: Extract data access layer with migrations to the library project and Execute migrations from the command line
1/11/2022 3:14:14 AM.
See code examples in this article: Let's imagine you have a solution with many projects including a web application with the name "MiniService", which contains appsettings.json and
Get Common SubString From Two Strings
12/30/2021 4:08:49 AM.
In this article, you will learn how to get a common SubString from two strings.
Usage Of JSON Function In Power Automate
10/29/2021 4:33:11 AM.
In Power Automate, at times we must work on JSON with String Values as input. We can use JSON function in power automate to convert string values to JSON and perform related operations. As an example,
Data Components In Visual Studio .NET - Part Four
11/26/2020 12:15:57 AM.
This article will help you in understanding Data Connections in Visual Studio .NET
Connection strings for IBM DB2
10/29/2020 12:13:52 AM.
IBM DB2 primarily runs on Unix, Linux IBM I, z/OS, and windows server. It is a relational database management system that comes in a variety of versions, running on devices ranging from handhelds to m
Strings And Characters In Swift
5/28/2020 9:02:40 PM.
In this article, you will learn about String operations and working with strings.
JavaScript Strings
5/19/2020 6:13:25 AM.
In this article we will learn about the properties and methods of string in JavaScript.
Learn About Strings in Python
4/21/2020 3:19:55 PM.
In this article, I will explain strings in Python.
Learn About Strings In Python
3/27/2020 7:50:53 AM.
In this Python String tutorial, we will learn what Strings are and how they are used in Python, how to traverse a string, what are String Operators and Methods, and how these can be used for string ma
Jump Start With Python - Part 4 (Strings)
2/17/2020 5:59:44 AM.
This article explains how to get started with programming in Python. This is part 4 of the series.
Strings In Python
2/13/2020 4:35:55 AM.
Python string. In this article, I am going to explain how we can manipulate strings in Python.
Python Datatypes
2/12/2020 2:49:52 AM.
In my previous article, we learned about Python Tokens. Here, we will see the Python Datatypes and how to implement them with the examples.
Don't Believe What You See
2/10/2020 11:01:30 PM.
In this article, we will cover a problem in string manipulation that doesn't seem noticeable and is hard to trace.
Playing With C# Strings Instance Methods
11/12/2019 7:55:40 AM.
String manipulation is one of the favorite subjects of developers when learning C#. In this article, we are going to focus on string instance methods. We might not cover every method, but most of the
String Functions in Java
9/27/2019 5:18:32 AM.
In this article you will learn about the various string functions in Java.
Learn StringBuffer Class in Java: Lecture 7
9/26/2019 6:19:28 AM.
This article explains the StringBuffer() class in Java and Java strings in general.
Learn StringBuffer() Class in Java: Lecture 6
9/26/2019 6:09:46 AM.
This article explains the StringBuffer() class in Java and Java strings in general.
Learn StringBuffer() Class in Java: Lecture 1
9/26/2019 5:24:49 AM.
This article explains the StringBuffer() class in Java and Java strings in general.
Formatting of Strings in Java
9/24/2019 3:44:05 AM.
In this article you will learn about the formatting of strings in Java.
How To Remove Specific Characters From C# String
9/23/2019 9:37:10 PM.
How to use string Remove method to remove characters from a string at specified positions.
Playing With Strings And Bytes/Byte - Arrays C#
8/26/2019 4:47:33 AM.
In this article, you will learn about playing with strings and Bytes/Byte - Arrays C#.
Android Kotlin - Strings And Ranges - Part Three
3/20/2018 10:01:38 AM.
In this article, we are going to learn about Strings and Ranges in Kotlin with string methods.
How To Create Dynamic Strings In C#
3/13/2017 2:33:41 PM.
In this article, we shall see how to create dynamic strings in C#.
Strings In Swift Programming Language
7/10/2016 12:36:57 PM.
In this article, you will learn about Strings In Swift Programming Language.
Understanding SQL Server 2016 String_Split Function
6/17/2016 11:19:11 AM.
In this article, I will show you a new feature that has been introduced in SQL Server 2016; i.e., STRING_SPLIT function.
Proper Translatable Pluralization in .NET With MessageFormat
6/12/2015 7:18:00 PM.
In this article we will learn about proper translatable pluralization in .NET with MessageFormat.
How to Add Strings in C#
5/21/2015 12:56:04 AM.
This article explains how to add two strings in C#.
All Possible Unique Substrings From an Input String
3/27/2015 4:51:34 PM.
In this article we will learn about the substrings in the C# programming.
Strings in C#
9/22/2014 3:19:14 PM.
In this article we will learn about strings in the C# language.
Add and handle connection strings in an application configuration file: Part I
9/4/2014 1:09:11 AM.
There are two ways to save data and parameters. In this case we save application parameters like information entered by the user during the installation process.
Binding List Box and List Of Strings in Windows Phone 8
3/11/2014 1:25:37 PM.
In this article we will learn how to bind a list of strings with a List Box in Windows Phone 8.
Filter Data By a Set of Strings Using Knockoutjs in ASP.Net Application
11/27/2013 11:25:03 PM.
This article explains how to filter data according to a set of strings using Knokcoutjs in an ASP.NET Application.
Standard Numeric Format Strings in LightSwitch 2012
10/23/2013 4:34:21 PM.
This article describes how to use Standard Numeric Format Strings in LightSwitch Visual Studio 2012.
Split and Merge Strings in C# Windows Form Application
3/13/2013 2:12:17 PM.
In this article I will describe how to split and merge string value in windows form application in c#.
Windows Phone 8 App Localization
2/19/2013 10:47:50 PM.
Here you will learn about the new built-in support for localization, introduced in Windows Phone 8.
Addition of Three Strings Using Single Activity In Android
2/5/2013 1:39:50 PM.
Here I am telling you how to add two or more strings in Androidif we want output in the current Activity.
Line Count Utility in VB.NET
11/10/2012 2:13:21 AM.
This utility is for counting number of code lines in a Visual Studio Project. It returns the number of code lines and file names which are in the project folders.
Encrypting Connection Strings in ASP.Net 2.0
10/3/2012 12:26:44 PM.
This article describes how to encrypt the connection strings section in ASP.Net 2.0 web.config files and demonstrates the transperancy of using encrypted connection strings in your web application.
strnicmp equivalent in C#
5/30/2012 12:12:46 AM.
C# equivalent strnicmp function in C language. It accepts two input strings along with the number of positions of chars to compare.
Demystifying: What does āStrings are immutableā means?
5/21/2012 7:09:26 AM.
In this article we will explain about String and StringBuffer.
State Management in Web Forms
5/20/2012 4:05:27 AM.
This white paper discusses the ways in which the state management can be handled in web forms. State management can be done either on client side or server side as explained below.
Connection Strings for SQL Server 2005
5/20/2012 1:59:18 AM.
SQL Server 2005 includes native support for managing XML data, in addition to relational data. It introduced MARS (Multiple Active Result Sets), a method of allowing usage of database connections for multiple purposes. It also introduced data mirroring and DMVs (Dynamic Management Views).
Connection Strings for SQL Server 2008
5/20/2012 1:58:34 AM.
SQL Server 2008 includes better compression features, which also helps in improving scalability. It enhanced the indexing algorithms and introduced the notion of filtered indexes. It includes capabilities for transparent encryption of data (TDE) as well as compression of backups.
Work with Strings in PHP
5/19/2012 5:53:05 AM.
PHP is a hypertext-preprocessor. In PHP, a string can be used directly in a function or it can be stored in a variable. With a string variable we can store and manipulate text.