I want to delete a specific value from hashtable.
The table looks like this:
Name Value
---- -----
column {test, test2}
How can I delete the "test2" value?
I tried the following:
$myhashtable.remove("test2")
which unfortunately does not work.
Could someone help me with this? Thanks!