Isha Guptaisha.hashnode.dev·an hour agoUnderstanding String Concatenation in JavaThis is super basic, and you might be thinking, "Why does this article even exist? Who doesn’t know string concatenation, right?" But let me tell you something: you might know string concatenation, but as a beginner, when you're writing code, working...Discussstring
Darshit Anjariadarshitanjaria.hashnode.dev·Aug 29, 2024Mastering JavaScript: The Battle Between concat() and Template literalsWhen it comes to concatenating strings in JavaScript, developers often have two main options: using the concat() method or template literals (backticks). While template literals offer a modern and convenient way to combine strings, there are still va...DiscussJavaScript
Anubhav Kumar Guptaanubhav2103.hashnode.dev·Jul 31, 2024String Class in JavaWhat is a String? Let's start with the basics. In Java, a string is essentially a sequence of characters. Think of it as a collection of letters, numbers, or symbols enclosed within double quotes. For instance, "Hello, Anubhav" is a string. The Strin...Discuss·10 likesJava
Satakshi Shanvisatakshi.hashnode.dev·Jul 26, 2024Understanding JavaScript String Methods: A Practical GuideStrings are one of the most fundamental data types in JavaScript. They are used to represent and manipulate text. JavaScript provides a variety of built-in methods to handle strings efficiently. Today, we'll explore some essential string methods, inc...Discuss·1 likeJavaScript
Neelesh Joshineeltyper001.hashnode.dev·Jul 23, 2024Javascript String methodsJavaScript provides a variety of methods for manipulating and working with strings. Here is a comprehensive list of the commonly used string methods: String Creation Methods String(): Creates a new String object. Character Methods charAt(index): R...DiscussJavaScript
Sreehitha Thatisreehitha.hashnode.dev·Jun 6, 2024A Guide to JavaScript String MethodsIn this Article you will learn about the essential String Methods used in JavaScript. The Prerequisites to understand this Article completely are : Basic Javascript Syntax Basic Knowledge of Datatypes What are the Methods? Methods are the same th...Discuss·6 likes·27 readsJavaScript
Vikas Guptavikasfeedingdotnet.hashnode.dev·May 31, 2024Welcome to "Mastering C# Strings: Top 15 Interview Questions Answered"!In this comprehensive video, we delve deep into the world of C# strings, covering essential concepts and addressing common interview questions that you're likely to encounter in your C# programming journey. https://www.youtube.com/watch?v=8EPP-fZuQW4...Discussstring
Aman Rajhuamanraj.hashnode.dev·May 16, 2024JS String Methods : Boost Your JavaScript Skills with Essential String Methods: Complete GuideIn this Blog we are going to see what useful operations we can do on strings with built-in methods, such as finding the length of a text string, joining and splitting strings, substituting one character in a string for another, and more. Strings Meth...Discuss·20 likes·26 readsJavaScript
Jeet Bhalujeetbhalu.hashnode.dev·Mar 13, 2024Dart String Manipulations: String BufferStringBuffer: A StringBuffer is use to multiple data add in one string to use and StringBuffer is provide multiple sequence characters. void main() { StringBuffer str =StringBuffer(); str.write("Hello"); str.write(","); s...DiscussDart String Manipulations: String Buffer
Yémalin AGBANGLAmomoagbangla.hashnode.dev·Jan 23, 2024Les Méthodes de Chaîne en Python.Les chaînes de caractères sont omniprésentes en programmation Python. Dans cet article, nous plongerons dans un ensemble de méthodes de chaînes, du fondamental au moins connu, pour t'aider à maîtriser l'art de la manipulation textuelle. Chacune de ce...Discuss·1 like·29 readsPython