gayatri kumarforGeeKee's Odysseygeekee.hashnode.net·Jun 26, 2022String and String Ops.Strings in Js is simply text wrapped in quotes. You can use double or single quotes, just be consistent. let myName = 'Gayatri'; let myFullName = "Gayatri Kumar"; let friendsName = 'Pabo Shivrav'; In string each character is indexed, and can be acce...Discuss·22 likes·80 readsJavaScriptJavaScript
Sujit MemaneforSujit Memanesujitmemane.hashnode.net·Nov 24, 2022Strings In JavascriptSTRING A string is a sequence of characters stored in variables and it is enclosed within the single and double quote. A JavaScript string is zero or more characters written inside quotes. EXAMPLE // In Double Quotes let name = "string"; let str = ...Anand Baraik and 1 other are discussing this2 people are discussing thisDiscuss·20 likes·176 readsJavaScript
Bandari sai kumarforBandari's blogtechrush.hashnode.net·Apr 16, 2023Roman to Integer C++ codeThis line defines the function romanToInt, which takes a string as input and returns an integer. This line initializes an unordered map called romanValues , which maps each Roman numeral character to its corresponding integer value. These lines ini...Discuss·20 likes·82 readsDSA
HanforEunhan's blogeunhanlee.hashnode.net·Apr 24, 2023Efficient Algorithm in Java for Solving the Maximize The Number ProblemProblem Problem_Link Problem Solving Method Goal: Swap the 1 at the end and the 0 at the front. Condition: The number of swaps must be less than the given k. Use StringBuilder: Since the string needs to be swapped, StringBuilder is the most effici...DiscussAlgorithm Solving StudyStrings
Allan N KicheforAllan Kiche's Blogkiche-allan.hashnode.net·Apr 17, 2023Reverse Integer (Solution For Leetcode Problem #7)Hello, Welcome to my Day 8 of #30Days of Problem Solving and finding solutions to Leetcode's Data Structures and Algorithm questions. Here, I choose a question daily and try to solve it, and finally pen down my process of flow in solving the question...Discuss·4 likesPython
Sylvester Amaechiforslycreatorslycreator.hashnode.net·Apr 16, 2023Strings in Java and ImmutabilityHey there! This article is going to be your ultimate guide to working with Strings in Java. You'll learn everything you need to know, from the basics of creating and manipulating Strings to more advanced topics like regular expressions and String imm...Discuss·7 likesJava
Bandari sai kumarforBandari's blogtechrush.hashnode.net·Apr 16, 2023Roman to Integer C++ codeThis line defines the function romanToInt, which takes a string as input and returns an integer. This line initializes an unordered map called romanValues , which maps each Roman numeral character to its corresponding integer value. These lines ini...Discuss·20 likes·82 readsDSA
Alvin Harunaforharunadev.hashnode.net·Apr 10, 2023What Are Strings In Python?In this article, we will look at Strings as a built-in data type in Python and some methods that you can perform on a string It is important to know what strings are and how you can use them when writing your programs An understanding of arrays in P...DiscussPython
Alex Anieforocxiginocxigin.hashnode.net·Mar 19, 2023JavaScript Type ConversionsIn JavaScript, when data is converted from one type to another by the JavaScript interpreter, this is referred to as Type Conversion. and this can occur automatically or manually. There are two ways JavaScript undergoes type conversion, these include...Discuss·26 readsJavaScript
Hemanth Kumar NandigamaforHemanthnhk.hashnode.net·Mar 19, 2023Java Strings #java #2 #strings #1STRINGS: combination of characters in any order is called a string. 4 types of String initializations are allowed in java. with literals (STRING POOL). with new keyword. String Builder. String Buffer. in this article, we have not covered string...Discuss·666 readsJava
Rizwan Shaikhforrizwan-io.hashnode.net·Mar 13, 2023"Strings" in JavaOverview Introduction Creating a String Operations on Strings StringBuffer & StringBuilder Top 10 Problems on Strings Introduction A String is nothing but just a sequence of characters. A Character may be an alphabet, a digit or any other cha...Discuss·11 likes·149 readsJava
Divesh MahajanforDivesh's Blogdiveshm.hashnode.net·Mar 9, 2023A Comprehensive Guide to String, StringBuilder and StringBufferWhile learning Strings in java we come across various classes like String, StringBuilder and StringBuffer which are not available in other languages. In this article, we will learn the basic difference between these classes and where to use which cla...Discuss·1 likeJava
Kevin KoechforDaily Read'skevinkoech.hashnode.net·Feb 27, 2023Dynamic Data Manipulation: Exploring Arrays, Pointers, and String Functions in CBefore diving deep into the article, there are a few key terms that I would like to explain. Upon reading the title of the article, the first three words that you came across are dynamic data manipulation. It refers to the process of building, improv...Discuss·10 likes·35 readsC