Resources  
  • 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.
  • What Are the Caveats of Array Changes Detection in Vue.jsMar 27, 2024. Vue.js relies on JavaScript's array mutation methods like push, pop, and splice for reactive updates. However, developers must be wary of caveats like direct assignments and methods with no side effects.
  • Single-Dimensional, Two-Dimensional, and Multidimensional Arrays in C#Mar 26, 2024. Arrays are fundamental data structures in programming languages, including C#. In this article, we'll explore single-dimensional, two-dimensional, and multidimensional arrays in C#, understand their differences, and learn how to work with them effectively.
  • Explain about Spread Operator in C# 12 Mar 20, 2024. The spread operator, a recent addition to C# in version 12, streamlines working with collections like arrays and dictionaries. It simplifies tasks such as cloning and merging, enhancing code readability.
  • 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.
  • Sort Array Directive in Vue.jsMar 13, 2024. Custom directives in Vue.js empower developers to extend HTML elements' functionality, enabling direct manipulation of the Document Object Model (DOM) within Vue applications. This example demonstrates creating a directive to sort an array based on a specific property.
  • 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.
  • 2D Array with Matrix Multiplication in C ProgrammingFeb 28, 2024. A double subscripted variable, also known as a two-dimensional array, is a variable that has two subscripts assigned to it in order to represent a list of items.
  • toSpliced(start, deleteCount, ...items) in JavaScript ES2023Feb 25, 2024. Creates a new array with elements spliced (added or removed) at a specific index, without modifying the original. The toSpliced method in JavaScript ES2023 offers a non-mutating alternative to splice, providing immutability, clarity, and concise data manipulation for arrays.
  • 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).
  • Immutable Arrays in JavaScriptFeb 21, 2024. In this article, we will learn how to work with Immutable Arrays in JavaScript. Explore the world of immutable arrays in JavaScript, understanding their creation using the spread operator, benefits, and common operations. Learn how they contribute to predictable state management and functional programming principles.
  • Moore's Voting Algorithm in JavaScriptFeb 14, 2024. Imagine you're analyzing election results or counting website visits. You need to find the most frequent item, the one that appears more than half the time. Sure, you could loop through the data and count manually, but wouldn't it be cool to have a smarter, more efficient way? Enter Moore's Voting Algorithm, a clever technique that solves this problem with elegance and speed.In this article, we'll demystify Moore's Voting Algorithm and implement it in JavaScript.
  • What are Array Detection Mutation Methods in Vue.jsFeb 14, 2024. Vue.js provides array mutation methods that enable reactivity, allowing Vue to detect changes and update the DOM dynamically. Understand and use these methods for effective array manipulation in Vue.js.
  • 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.
  • Merging Arrays within Synapse / Azure Data Factory PipelineFeb 07, 2024. merging arrays in Azure Data Factory / Synapse pipelines. By utilizing functions like "join" to convert arrays to strings, "concat" to combine strings, and "split" to transform strings back to arrays, this solution ensures comprehensive data integration.
  • Listing Unique Records Within an Array in Azure Data FactoryFeb 02, 2024. Utilize Azure Data Factory to remove duplicates within an array by employing the "union()" function. This solution involves the Set Variable activity to obtain a unique list from the array.
  • Two Pointer Approach in PythonFeb 01, 2024. The Two Pointer Approach is one of the most used and efficient techniques to search for a pair in a sorted array. We'll look into the working of it, implementation and use cases.
  • JavaScript Destructuring: Arrays, Functions, and ObjectsJan 31, 2024. Destructuring is a powerful feature in JavaScript that allows you to extract values from arrays, objects, and function parameters easily.
  • What is List Rendering in Vue.js?Jan 23, 2024. Vue.js provides an elegant and powerful way to render lists of data dynamically with the v-for directive. This feature allows you to iterate over an array or an object, creating and updating HTML elements effortlessly. In this guide, we'll explore the ins and outs of list rendering in Vue.js with practical examples.
  • 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.
  • Iterating Over an Array Using Arrow Functions in JavaScriptJan 19, 2024. The ways for Iterating Over an Array using arrow functions in JavaScript. Explore concise array iteration in JavaScript using arrow functions and methods like forEach, map, filter, reduce, and find. Simplify array tasks with clear, short, and effective code examples.
  • TwoSum Example in C#: Print and Count Pairs with Given SumJan 17, 2024. Given an array of integers and target number ‘target sum' then print all pairs and their count in the array whose sum is equal to ‘target sum’.Examples : Input : arr[] = {3, 5, 7, 1, 5, 9}, target = 10 Output : (3,7) (5,5) (1, 9)Count: 3
  • 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.
  • Array Operations in JavaScriptJan 17, 2024. Arrays are fundamental in JavaScript, allowing storage and manipulation of collections. Common operations include element access, addition/removal, iteration, built-in methods (map, filter, reduce), slicing, finding, and filtering/mapping.
  • All about Solidity ArraysJan 15, 2024. Unlock the world of Solidity arrays in blockchain. From basics to pro tips, your complete guide for mastering this key element in smart contract coding.
  • What is Inline Arrays in C# 12Jan 10, 2024. C# 12 unveils a hidden gem - inline arrays. This article delves into these performance powerhouses, showcasing how they boost speed, simplify memory management, and enhance type safety. Discover their functionalities and practical applications in diverse scenarios like geometric operations.
  • 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.
  • What is Collection Expressions in C# 12?Jan 03, 2024. Forget the days of writing mountains of code just to create simple lists or arrays. C# 12 unleashes collection expressions, your new superpower for crafting collections with ease and elegance. This friendly guide demystifies the magic behind these expressions, even if you're a coding newbie.
  • Essential Features of C# 12 You Need to KnowDec 28, 2023. Unlock C#'s hidden potential with features that make coding a breeze. Streamlined constructors, effortless collections, and enhanced lambdas await!
  • 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.
  • 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.
  • Row Constructors in PostgreSQLDec 13, 2023. Explore the power of row constructors in PostgreSQL, enabling efficient row-wise data manipulation. This guide covers syntax, applications in SELECT, INSERT, UPDATE, DELETE statements, and common use cases for optimization.
  • How to Extract Initials from a String in AngularDec 13, 2023. In this article, we will learn how to extract initials from a string.
  • Array Constructors in PostgreSQLDec 06, 2023. Explore the robust array feature in PostgreSQL, a powerful tool for storing and managing multiple values in a single column. Learn declaration, input, access, and manipulation techniques.
  • Understanding LIKE vs ILIKE in PostgreSQLDec 05, 2023. In this article, we will focus on the differences between the LIKE and ILIKE operators, and how to use them effectively.
  • 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.
  • Difference Between Array and ArrayListDec 01, 2023. Here in this article, we are going to explain the difference between Array and Arraylist.
  • 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.
  • Sorting Arrays in C#Nov 24, 2023. This article guides us through sorting arrays in C# using the Array.Sort() method and LINQ queries. It covers both ascending and descending orders, providing code snippets for clarity.
  • 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.
  • Understanding Jagged Arrays in C# with ExamplesOct 19, 2023. The article will explain the Jagged Arrays in C# with an example and easy explanation. Jagged arrays in C# enable the storage of data in varying lengths, offering flexibility in managing complex data structures. Explore how to declare, initialize, and utilize jagged arrays through a comprehensive C# example.
  • 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.
  • Array to Object in JavaScript: The Best Way to Manipulate DataOct 04, 2023. Learn how to convert an array to an object in JavaScript with simple examples and methods.
  • Data Structures in R Programming Sep 25, 2023. In this guide, we'll explore the various data structures in the R language. Provided with syntax examples and illustrate how each data structure is used in practical scenarios in detail.
  • Destructuring in JavascriptSep 18, 2023. Destructuring in JavaScript simplifies the extraction of specific values from arrays and objects. For instance, when dealing with arrays or objects, you might not always need all the values, only specific ones. It streamlines this process by allowing you to assign these values to variables.
  • Array Map Method in JavaScript Sep 18, 2023. In JavaScript, arrays are used to create collections of elements. You can declare an array in JavaScript using square brackets, and it can contain various types of data, including integers, strings, or decimals.
  • Efficient PDF Generation in ASP.NET Core Web API Using DinkToPdfSep 09, 2023. Generating PDF files in an ASP.NET Core Web API is a common requirement, and there are several libraries available to help with this task. In this example, I'll show you how to generate PDF files using the popular library called DinkToPdf, which is a .NET wrapper for the C library DinkToPdf. We'll also follow best practices for structuring your ASP.NET Core Web API project.
  • 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.
  • Insert JSON Array into Table with Stored Procedure ParameterSep 04, 2023. Learn how to efficiently save and insert JSON array data into a database table using SQL Server's T-SQL language, with adaptable concepts for other database systems.
  • Exploring F# Arrays: A Comprehensive GuideSep 04, 2023. Explore the power of F# arrays: creation, manipulation, benefits, and tips—master efficient data handling in F# programming.
  • 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.
  • Converting Strings to Numbers in C#Aug 04, 2023. In this article we learn about how to convert string to numbers in c#
  • Introduction to Powerful Numerical Computing with Python NumPyAug 01, 2023. Explore the essentials of Python NumPy in this beginner's guide. Learn to wield powerful arrays, perform advanced calculations, and elevate your data manipulation skills
  • 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!
  • Exploring Python Data StructuresJul 18, 2023. In this article we will discuss about Pyhton data structures.
  • ArrayBuffer vs Typed Array in JavaScriptJul 17, 2023. In this article, I'm going to explain the key differences between Typed Arrays and ArrayBuffer.
  • How to work with the MongoDB in VS-Code? Jul 07, 2023. How to work with the MongoDB in VS-Code
  • Export Sharepoint List Metadata Using Power AutomateJun 15, 2023. In this article, I will explain, how can we export a SharePoint list metadata using Power automate. While doing that, we will learn many basic concepts of Power Automate like how to use JSON, strings, arrays etc.
  • Collections in KotlinJun 12, 2023. The article wraps Collections in Kotlin and provides a summary or final thoughts on the topic.
  • Numpy for Data ScienceJun 08, 2023.
  • 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#.
  • JavaScript Array Methods Cheat SheetJun 01, 2023. Array methods in JavaScript are used for a variety of purposes to manipulate, transform, and work with arrays more efficiently
  • How to Create A JSON String In C#?Jun 01, 2023. How to create JSON object in C#
  • Array In RustMay 31, 2023. In this article, we will learn in depth about the concept of arrays in the Rust programming language.
  • Dot Vs Bracket Notation in JavascriptMay 30, 2023. In this article, we will learn Dot Vs Bracket Notation in Javascript
  • flat() and flatMap() in JavaScriptMay 18, 2023. In this article, we will learn how we can deal with nested arrays and how we can alter in single array
  • Important JavaScript Concepts for DevelopersMay 11, 2023. JavaScript Important Concepts for Developers
  • How to Use Clear Keyword An Array in C#May 10, 2023. In this article, you will learn about what is a Clear Keyword an array in C#
  • How to Insert An Element Into An Array In C#May 09, 2023. In this article you will learn How to insert an element into an array in C#?
  • 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 Check The Length Of An Array In C#May 05, 2023. In this article, you will learn How to check the Length of an array in C#
  • 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.
  • What Are The Data Types In Rust?Apr 27, 2023.
  • 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.
  • How to check if an array contains a specific element in C#Apr 24, 2023. in this article, you will learn How to check if an array contains a specific element in C#
  • What is 2D Array In C#Apr 22, 2023. In this article, you will learn about 2d arrays in C#.
  • How to Remove An Element from An Array In C#Apr 21, 2023. In this article, you will learn about How to Remove An Element from An Array In C#?
  • How To Copy An Array In C#Apr 19, 2023. In this article you will learn How to copy array in C#.
  • 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
  • Power Up Your Automations: Mastering Array and Object Comparison in Power AutomateApr 18, 2023. Learn how to take your Power Automate game to the next level by mastering array and object comparison! Discover the tips and tricks you need to streamline your workflow and supercharge your automation skills in this must-read article
  • 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#
  • What Is 4D Array In C#Apr 12, 2023. In this article, you will learn about What Is 4D Array in C#
  • How to Use Multidimensional Arrays in C#Apr 11, 2023. Learn how to use multidimensional arrays in C# to store and manipulate data efficiently. From declaring and accessing arrays to iterating over them and avoiding common pitfalls, this comprehensive guide covers everything you need to know about working with multidimensional arrays in C#. Master the power of multidimensional arrays and improve your programming skills today!
  • 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

About string-to-char-array

NA

OUR TRAINING