Resources  
  • String Handling Functions implementation in C LanguageMar 29, 2024. In C programming, strings are fundamental for working with textual data. Unlike some other languages, C handles strings using character arrays with a null terminator.
  • String vs StringBuilder in C# with ExampleMar 29, 2024. In this article, we have explained the difference between String and StringBuilder in C# with example. Know the basic knowledge of String and StringBuilder in C#.
  • How Do You Work with JSON Data in JavaScript?Mar 28, 2024. In this article, we will explain you how to work with JSON data in JavaScript with example. Working with JSON data in JavaScript involves parsing JSON strings into objects and stringifying objects into JSON strings. JSON.parse() and JSON.stringify() methods facilitate this process efficiently.
  • Convert Attachment to Base64 in Power Apps for Email AttachmentsMar 27, 2024. Convert attachment files into Base64 strings in Power Apps. Use Power Automate to trigger email creation, dynamically attaching the Base64-encoded files. Streamline workflow, automating attachment handling and email sending seamlessly.
  • Visual Studio 2022 IntelliSense Hover not Working ProblemMar 26, 2024. VS 2022 extensions can interfere with the IntelliSense Hover functionality. Fix Visual Studio 2022 IntelliSense Hover not working by uninstalling the problematic extension causing the issue.
  • Working with Branch Policies in Azure DevOpsMar 18, 2024. In this article, we will learn how to enforce quality and compliance standards in your Azure DevOps repositories by implementing branch policies. Ensure code quality, enforce code reviews, and automate testing with branch policies.
  • Handling JSON in C#Mar 16, 2024. C# provides seamless JSON handling with System.Text.Json. Easily parse JSON strings into C# objects and vice versa for efficient data manipulation.
  • How Indexing Columns works in SharePoint Online?Mar 11, 2024. This article illustrates the process of creating an index column within SharePoint Online List/Library to enhance the efficiency of querying and retrieving results from SharePoint Online List/Library.
  • 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.
  • How to Extract Initials from a String in Vue.jsMar 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.
  • Template Literals In JavaScriptFeb 24, 2024. JavaScript template literals are an effective tool for working with and creating strings. They were first included in ECMAScript 6 (ES6).
  • Perform CRUD Operations using Azure DevOps Rest APIFeb 19, 2024. In this article we will discuss Azure DevOps REST API and perform CRUD operations on work items using PowerShell, including create, read, update, and delete.
  • How to Do Work Folder in Windows Server?Feb 19, 2024. Work Folders in Windows Server 2019 enable seamless synchronization of user files between devices, ensuring access to up-to-date data. Administrators can set up and manage Work Folders via Group Policy and Active Directory.
  • String.IsNullOrEmpty() vs String.IsNullOrWhiteSpace()Feb 13, 2024. 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.
  • How Virtual DOM Works in ReactFeb 12, 2024. React's Virtual DOM enhances performance by creating a lightweight representation of the real DOM. It efficiently updates the actual DOM, minimizing manipulations for faster, optimized UI rendering.
  • Key Design Patterns in Software EngineeringFeb 08, 2024. Discover essential design patterns such as Singleton, Factory, Abstract Factory, Unit of Work, Repository, and Command Query Responsibility Segregation (CQRS). Learn their applications and implementations, and see how they synergize to enhance software architecture and development.
  • Common Implementation Mistakes of Work Pattern in C#Feb 07, 2024. Exploring common mistakes in implementing the Unit of Work pattern in C# development. Examples include overcomplicating the class, incorrect transaction management, and lacking exception handling.
  • Working with Service Connections in Azure DevOpsFeb 01, 2024. In this article, we will discuss how we can set up service connections and use them in Azure pipelines. Azure DevOps relies on service connections to integrate with external services. Secure connections streamline Azure DevOps with Azure, GitHub, and Power Platform, enabling deployment, integration, and ALM processes.
  • Working with Modern Command Bar Designer in PowerAppsJan 25, 2024. In this article we will discuss about modern command designer and how it is becoming more popular alternative to RibbonWorkBench. We will discuss various Use Cases followed by a demo discussing step by step process for the same.
  • Lazy Loading In ASP.NET Core 7 Web APIJan 22, 2024. ASP.NET Core 7 Web API. Lazy loading is a technique where related data is only loaded from the database when it is explicitly requested. In Entity Framework Core, lazy loading can be achieved by marking navigation properties as virtual.
  • Working with SQL Lite Database in Asp.NET Core Web API Jan 21, 2024. SQLite is a self-contained, serverless, and zero-configuration relational database management system (RDBMS). It is a lightweight, open-source, and embedded database engine that does not require a separate server process and operates directly on the client's device
  • Concatenate Two Strings in C# Jan 17, 2024. 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 requirements.
  • Working with Noda Time, .Net and Entity Framework (EF core)Jan 15, 2024. Working with NodaTime with EF core which is a alternative DateTime framework for .net applications.
  • Sending SMS Notifications with Azure Communication Services in .NETJan 07, 2024. 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 with ease.
  • Common Mistakes and How to Avoid Them in C# Jan 05, 2024. In this article, we will learn how to avoid common mistakes in C# programming. From efficient null checking and using tuples instead of classes to optimizing string concatenation and evaluating default values correctly.
  • JavaScript Replace SpacesDec 27, 2023. Learn how to use the JavaScript replace() method to remove spaces from a string and replace them with another character. The JavaScript replace() method is mostly used to replace the spaces in this article. So here is a quick introduction to the replace() method.
  • API Development Using Dapper and Microsoft Asp.NET Core Web API Dec 24, 2023. ASP.NET Core is a powerful framework for building web applications, and "Dapper" is a popular micro ORM (Object-Relational Mapping) that works well with ASP.NET Core for database operations. Dapper provides a simple way to interact with databases using raw SQL queries while mapping the results to objects.
  • Working With Numeric Format Specifiers in C# 10Dec 17, 2023. In this article, we will see how to use numeric format specifiers with Console.WriteLine in C# 10.
  • Reverse String Pipe in AngularDec 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 AngularDec 13, 2023. In this article, we will learn how to extract initials from a string.
  • String Constants in PostgreSQLDec 01, 2023. Delve into PostgreSQL's handling of string constants, which is essential for managing text data. Explore their syntax, handling of special characters, and their versatile use in variable assignment, function arguments, comparisons, and more. Examples demonstrate their significance in tasks like substring replacement, regular expression matching, and date conversion. Elevate your PostgreSQL proficiency in manipulating and storing text data with these insights.
  • Dealing with Date and Time in Humanizer in C#Dec 01, 2023. Learn how to handle date and time in a user-friendly way in C# projects using Humanizer. Covering DateTime and TimeSpan humanization with customization options and real-world use cases for improved user experience.
  • Getting Started with Humanizer in C#Nov 27, 2023. In this article, we'll explore how to install and use Humanizer in C#, unveiling both its basic and advanced capabilities. By the end, you'll be equipped to elevate the user experience in your C# applications with Humanizer.
  • Working with Splash Screen in .NET MAUINov 26, 2023. In this article, we will learn How to create and customize the splash screen in .NET MAUI.
  • AI and the Future of Work: A New Era of Human EmpowermentNov 15, 2023. It's true that AI is transforming the future of work, but it doesn't mean human jobs are in danger. Learn how AI tools can enhance your skills, make you more valuable to your company, and keep you ahead of the technology curve. In addition, the article emphasizes the importance of ethical guidelines for the use of artificial intelligence.
  • Data Types In JavaScript Nov 10, 2023. Data types is most important concept in javascript and very useful logic in programming.Best concepts for fresher interview questions.
  • How to use Power Automate to split a string into an arrayNov 06, 2023. This article explains how to turn a string into an array using the Power Automate split function.
  • Java 21: New Features and ExamplesNov 02, 2023. Java 21 is a major release that includes a number of new features and improvements that make Java more concise, expressive, safe, and performant. Some of the most significant new features include record classes, sealed classes, pattern matching for instanceof, virtual threads, and sequenced collections.In short, Java 21 is a must-have update for any Java developer. It includes a number of new features that can help you to write better code, faster.
  • 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 Does an HTTP Web Request Work?Oct 12, 2023. Explore the fundamental workings of HTTP, the protocol that underpins web communication. Learn about HTTP components, status codes, and the process of client-server interaction.
  • Working with FlyoutPage in .NET MAUISep 25, 2023. In this article, we delve into .NET MAUI's FlyoutPage, a critical element in-app navigation. If you're new to .NET MAUI, it's advisable to review prior articles in this series
  • Securing .NET/ASP.NET Core Apps with Azure Key Vault Middleware Sep 08, 2023. 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, we'll walk through creating an ASP.NET Core application that leverages Azure Key Vault to store and retrieve secrets. We'll also implement a custom middleware for secure secret retrieval in real-time.
  • Working With NavigationPage In .NET MAUISep 04, 2023. In this article, we will learn about the NavigationPage in .NET MAUI.In .NET MAUI (Multi-platform App UI), the NavigationPage is a fundamental navigation container that allows you to manage the navigation flow and hierarchy of pages within your mobile and desktop applications. It is a key component for creating structured and user-friendly navigation experiences. Here's a description of how to work with NavigationPage in .NET MAUI:
  • Best Practices for Working with DateTime, UTC, and Offset in C#Aug 28, 2023. Discover essential strategies for effectively managing DateTime, UTC, and Offset in C# applications, ensuring accurate and consistent time representation across different scenarios. Learn best practices, tips, and code examples for seamless time zone conversions and daylight-saving time considerations
  • How to Get Query String in JavaScriptAug 22, 2023. This article will discuss using JavaScript to get Query String from a Web Page.
  • String Methods in JavaScriptAug 22, 2023. Explore essential JavaScript string methods in this guide. Learn to manipulate, extract, and transform strings using functions like charAt, concat, includes, indexOf, and more. Start mastering JavaScript string manipulation today!
  • Convert String into Array in JavaScriptAug 21, 2023. Efficiently transform strings into arrays in JavaScript. Explore split() method, custom delimiters, and JSON conversion.
  • Constant Interpolated Strings in C# Aug 18, 2023. 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. Understand benefits, use cases, and considerations for improved code quality and maintainability.
  • How To Work with JSON in SQL Server?Aug 08, 2023. In this article, we will learn about How To Work with JSON in SQL Server
  • Converting Strings to Numbers in C#Aug 04, 2023. In this article we learn about how to convert string to numbers in c#
  • What are governance tokens and how do they work in DeFi?Aug 01, 2023. Explore the transformative role of governance tokens in DeFi: influencing decisions, empowering communities, and shaping finance's future.
  • How .Net MAUI WorksJul 25, 2023. In this article, you will learn how to get started with .NET MAUI.
  • Converting Strings in C#: JSON, Base64, XML, CSV and ReverseJul 19, 2023. 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 must-read article!
  • How to work with the MongoDB in VS-Code? Jul 07, 2023. How to work with the MongoDB in VS-Code
  • Extract Devops Work Item Drop Down Value Using Power AutomateJun 22, 2023.
  • Clean Code in Your Cloud Work Flow with SonarCloudJun 12, 2023. Automatic code analysis for .NET projects with SonarCloud
  • What Is Polygon Blockchain and How it works?Jun 09, 2023. In this article we have explained What Is Polygon Blockchain and How it works ?
  • 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#
  • Python -- "py" works, but "python" doesn'tMay 29, 2023. This article will discuss the situation that "py" works, but "python" doesn't.
  • Learn How Event Loop Works in Client / Server Side in JavaScriptMay 26, 2023.
  • Working with Date and Time Formats in T-SQLMay 22, 2023. This article describes how different date styles work with date formats
  • Azure Quotas: What They Are and How They WorkMay 08, 2023. In Microsoft Azure, quotas refer to the limits set on the amount of resources that can be used by a particular subscription or resource group. Quotas are put in place to ensure that Azure resources are used in a fair and equitable manner, and to prevent any one user from consuming too many resources at once.
  • String Operations in Rust: A Beginner's GuideMay 08, 2023. In this article we learn about how to perform string operations in Rust, including reading, manipulating, and transforming strings, through a variety of examples
  • 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#
  • Globalizing Strings in Microsoft .NET with the Multilingual App ToolkitMay 02, 2023. 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 hours (including my learning curve) to convert the Spargine Dev Tool to Danish, Hindi, and Spanish.
  • Strings In RustApr 27, 2023. In this article, we discuss what is a string in Rust, the type of string in Rust, and how to use them.
  • Working with Big Data in SQL ServerApr 25, 2023. Working with Big Data in SQL Server
  • SharePoint Item Display and Edit Screens Without Any CustomizationApr 24, 2023. In this article we will see how to add a SharePoint list with few fields in all items view on a SharePoint page and show/ edit all the details of any selected list item on same page. Sometimes we have requirements where we want to show/ edit the details of any selected SharePoint list item. In most cases we go with custom web part or some app in Power Apps, but we can achieve this without any customization. We can use out of box SharePoint web parts and features to do this.
  • Using C# 12's Interpolated Strings For More Concise And Readable CodeApr 19, 2023. Using C# 12's Interpolated Strings for More Concise and Readable Code
  • Working with Files in Python: Reading, Writing and AppendingApr 18, 2023. Working with Files in Python: Reading, Writing and Appending
  • How To Create Azure Synapse Analytics Service?Apr 17, 2023. In this article, you will learn about working With Azure Synapse Analytics Service Using Azure Cloud Portal.
  • Working with APIs Calls In React NativeApr 16, 2023. In today's world of mobile app development, working with APIs is a fundamental requirement. APIs allow developers to integrate data from various sources and services into their apps.
  • How to Use GUIDs in C#?Apr 14, 2023. We are discussing GUIDs (Globally Unique Identifiers) which are commonly used in C# to create unique identifiers for objects, entities, and resources in a system. In this article, Ziggy Rafiq will take us through the fundamentals of GUIDs in C#, their benefits, and how to convert strings to GUIDs.
  • 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
  • Find the Longest Common Prefix in C#Apr 12, 2023. In this article, we will see the longest common prefix in C#
  • How To Split A String Using Backslash As Delimiter In C# With Code ExamplesApr 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 JavaScriptApr 04, 2023. In this article, I am going to demonstrate various way to count number of character occurrences in a string javascript
  • Share Your Work In Progress In Real Time From VS CodeMar 23, 2023. Need to ask a teammate for some help with your code, but don’t want to push broken changes to GitHub? GitLive has a solution ??
  • Start Working On Azure Static Web AppsMar 19, 2023. In this article, we are going to learn about "Azure Static Web Apps."
  • How To Work With Microsoft Azure Cloud SQL ServiceMar 14, 2023. In this article, you will learn how to Work with Microsoft Azure Cloud SQL Service.
  • The Ultimate Guide to Converting Strings to Numbers in JavaScriptMar 12, 2023. Looking to convert strings to numbers in JavaScript? Our comprehensive guide covers various methods, including type coercion, parseInt, and more! Perfect for software developers.
  • Compare Comma Seperated Values in SQLMar 09, 2023. 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 it both sides and then compare them.
  • Efficiently Working With Arrays And Memory In C# Using Span<T>Mar 08, 2023. In this article, we will see use of Span&lt;T&gt; to working with array.
  • How To Create And Work With Manage Instance Group In Google Cloud Platform Feb 15, 2023. In this article, we would try to understand more about Manage Instance Group. We would also see features of Manage Instance Group like Auto Scaling, Auto Healing, and canary deployment.
  • Proof-Of-Work In BlockchainFeb 08, 2023. The blockchain&#39;s Proof of Work (PoW) consensus method enables miners to add new blocks to the network based on calculations made to obtain the ideal hash. The new block&#39;s appended transactions are verified by network users.
  • Proof-Of-Stake In BlockchainFeb 06, 2023. Proof-of-stake is a consensus process used to determine the next major change in the network. Participants lock up some of their money as part of a staking mechanism in order to be chosen.
  • 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#.
  • Understanding Routing In AngularJan 31, 2023. In this article, you will learn about routing in Angular.
  • Understanding Internal/External IP Address in Google Cloud VM Instances And Working With Static IP AddressJan 30, 2023. In this article, we will understand difference between Internal and External IP address of VM instance. We would also learn how to create a static IP Address and assign it to VM Instance.
  • Raw String Literals - New Feature In C#11 With .NET 7Jan 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.
  • Working With Parameters In Dapper ORMDec 26, 2022. In this article, I&#39;m going to explain how we can get values from In, Out, and return parameters while working with Dapper ORM
  • What Is A Chatbot And How Does It WorkDec 16, 2022. Chatbots use natural language processing (NLP) and set of pre-defined rules to understand the inputs as question and provide response closer to what is available with the knowledge database programmed in a much more interactive and intuitive way of communication.
  • String Interpolated New Line In C# 11 | Learn C#Dec 16, 2022. In this article, we gonna discuss the new feature String interpolated new line in C# 11 with examples. C# programming language was launched in 2000 and now it is at its version 11.
  • 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.
  • Unit Of Work With Generic Repository Implementation Using .NET Core 6 Web APIDec 04, 2022. Unit Of Work with Generic Repository implementation using .NET Core 6 Web API.
  • Using Multi-Line String Literals In .NET 7Dec 02, 2022. In this article, you will learn how to use Multi-line String Literals in .NET 7.

About Working-with-Strings

NA

OUR TRAINING