Simran Anandsimranblogss.hashnode.dev·Nov 23, 2024Mastering Python RegEx: A Comprehensive Guide to Text ManipulationIntroduction Regular Expressions (RegEx) are a powerful tool for anyone dealing with text data in Python. Whether you’re cleaning messy data for analysis, building search functions, or extracting information from large text files, knowing how to use ...Discuss·22 likes·68 reads#Regex #RegularExpressions #PythonRegex #TextManipulation #PatternMatching #DataValidation #DataCleaning #TextProcessing #WebScraping #DataExtraction #DataParsing #InputValidation #TextSearch #TextTransformation #ProgrammingTips
Vukani Gcabashevukanig.hashnode.dev·Jul 2, 2024Understanding Regular Expressions (Regex)Introduction Regular expressions, commonly known as regex, are powerful tools we use for pattern matching within strings when we are trying to perform operations on a string. Some of the useful ways to use it include: search, edit, and manipulate tex...DiscussRegular Expressions
Shweta Notiyalshwetanotiyal.hashnode.dev·Mar 7, 2024All about JavaScript - StringDefinition of String "String is a sequence of characters used to form and represent a text. These can be alphabets, numbers, and special characters". In this article, you will learn about: String in JavaScript How to create a String in JavaScript ...Discuss·30 readsJavaScript
Chris Dourisdigitalcreations.hashnode.dev·Feb 29, 2024Day 23/100 100 Days of CodeI found a bug where some of the text was not detected with the find() method properly as the method is case-sensitive. I tried using the following function: // To lower case // Source: https://stackoverflow.com/questions/313970/how-to-convert-a...Discuss100 Days of CodeC++
Divyanshibooleanbit1.hashnode.dev·Nov 23, 2023Strings, Char and Integer manipulation in JavaWhen solving Data Structures and Algorithms (DSA) questions related to strings, I consistently have a conceptual understanding of manipulating input strings to achieve the desired output. However, leveraging the built-in methods or properties of the ...Discuss·10 likeschars
Fridahfridah.hashnode.dev·Apr 18, 2023A Function that Implements String Concatenation In CThis C program defines two functions: _strlen and _strcat. The _strlen function takes a string as input and returns its length. The _strcat function concatenates two strings and returns the resulting string. The main function demonstrates the use of ...DiscussC
Fridahfridah.hashnode.dev·Apr 18, 2023Reversing a String In CThis C program defines two functions to reverse a given string: _strlen(char *str): calculates the length of a string str. reverse_string(char *str): reverses the string str by swapping its characters. The main function uses reverse_string to rev...DiscussC
Shaik Fayazfayaz-shaik.hashnode.dev·Jan 23, 2023History of the StringsEarlier in C language the string data type support was not there. For storing the strings we need to use the "char" datatype array which usually ends with a special character '\0'. Therefore, the size of a character array is always one more than that...DiscussString Data Structurestring
Bhaskar Sahub23r.hashnode.dev·Oct 17, 2022Mastering JavaScript String Properties and Methods.In JavaScript, a string is a sequence of characters used to represent text. Strings are considered primitive data types in JavaScript and are often used to store and manipulate text-based data. Strings can be enclosed in single quotes ('), double quo...Discuss·10 likes·26 readsJavaScript
Adnan Sarkaradnansarkar.hashnode.dev·Sep 1, 2022Javascript Strings & Its MethodThe string data type is the most common in programming languages. Most of cases we have to work on strings, rather than numbers or others. That's why knowing concepts and methods about string always makes you confident. In this article, I will discus...Discuss·1 like·178 readsiwritecode