

- Trending Categories
Data Structure
Networking
RDBMS
Operating System
Java
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
How to add/merge two hash tables in PowerShell?
Adding values of the hash table is simple as the adding string. We just need to use the addition operator (+) to merge two hash table values.
Here, we have two hash tables: $htable and $htable1.
$htable = [Ordered]@{EmpName="Charlie";City="New York";EmpID="001"} $htable1 = [Ordered]@{Fruit='Apple';Color='Red'}
We will now add two hash tables,
$htable + $htalble1
PS C:\WINDOWS\system32> $htable+$htable1 Name Value ---- ----- EmpName Charlie City New York EmpID 001 Fruit Apple Color Red
- Related Questions & Answers
- Joining two hash tables in Javascript
- How can I merge two MySQL tables?
- Hash Functions and Hash Tables
- Merge two tables with union in MySQL?
- How to add and remove values to the Hash Table in PowerShell?
- C++ Program to Implement Hash Tables
- How to create a Hash Table in PowerShell?
- How to create and populate Java array of Hash tables?
- What is Hash Table in PowerShell?
- How to merge two JavaScript objects?
- Hash Tables for Integer Keys in Data Structure
- How to merge two arrays in JavaScript?
- C++ Program to Implement Hash Tables with Double Hashing
- C++ Program to Implement Hash Tables with Linear Probing
- C++ Program to Implement Hash Tables with Quadratic Probing
Advertisements