Jump to content

text as array index ... possible?


Recommended Posts

Hey guys,

is there a way to use strings (or lets say anything but numbers) as an array index?

e.g.

$array["Name"] = Zephir

i tried a few things and it always promts me with an error... help file does not help either ^_^

thank you

Zephir

Link to comment
Share on other sites

  • Moderators

Zephir,

I cannot imagine why you would want to use anything other than numbers as array indices.... but this is as close as I can get to using strings:

Global $aArray[2] = ["One", "Two"]

$First = 0
$Second = 1

ConsoleWrite($aArray[Eval("First")] & @CRLF)
ConsoleWrite($aArray[Eval("Second")] & @CRLF)

M23

Public_Domain.png.2d871819fcb9957cf44f4514551a2935.png Any of my own code posted anywhere on the forum is available for use by others without any restriction of any kind

Open spoiler to see my UDFs:

Spoiler

ArrayMultiColSort ---- Sort arrays on multiple columns
ChooseFileFolder ---- Single and multiple selections from specified path treeview listing
Date_Time_Convert -- Easily convert date/time formats, including the language used
ExtMsgBox --------- A highly customisable replacement for MsgBox
GUIExtender -------- Extend and retract multiple sections within a GUI
GUIFrame ---------- Subdivide GUIs into many adjustable frames
GUIListViewEx ------- Insert, delete, move, drag, sort, edit and colour ListView items
GUITreeViewEx ------ Check/clear parent and child checkboxes in a TreeView
Marquee ----------- Scrolling tickertape GUIs
NoFocusLines ------- Remove the dotted focus lines from buttons, sliders, radios and checkboxes
Notify ------------- Small notifications on the edge of the display
Scrollbars ----------Automatically sized scrollbars with a single command
StringSize ---------- Automatically size controls to fit text
Toast -------------- Small GUIs which pop out of the notification area

 

Link to comment
Share on other sites

thanks M23 ^_^ you gave me a good idea. gonna try it.

i'm working on a script that has quite big arrays... and im tired of getting confused by numbers... words would explain the value of the element and make things a lot easier

Zephir

Link to comment
Share on other sites

is there a way to use strings (or lets say anything but numbers) as an array index?

$array["Name"] = Zephir
What you're after is unclear. Your code is also unclear: what is Zephyr supposed to be? The syntax is bad anyway.

If you need to find a string value in an array, use _ArraySearch.

If you intend to access array members by a more mnemonic way than numbers, try defining constants (lookup Enum).

If you need an association between a string ("Name") and a value ($Zephyr or "Zephyr") then you need a 2D array. The bad news is that AutoIt arrays aren't natively associative, but the good one is that you can easily get the same behavior. Note that if your array is big you might think about using SQLite instead.

#include <array.au3>

Local $array[6][2] = [["Fred",  "guru"], _
                ["Paul",    "newbie"], _
                ["Jane",    "geek"], _
                ["Alan",    "user"], _
                ["Suzan",   "spy"], _
                ["Eric",    "developper"]   ]
Local $index
Local $value

$index = _ArraySearch($array, "Jane")
$value = $array[$index][1]  ;; this gets "geek"
MsgBox(0,"Jane is a",$value)

This wonderful site allows debugging and testing regular expressions (many flavors available). An absolute must have in your bookmarks.
Another excellent RegExp tutorial. Don't forget downloading your copy of up-to-date pcretest.exe and pcregrep.exe here
RegExp tutorial: enough to get started
PCRE v8.33 regexp documentation latest available release and currently implemented in AutoIt beta.

SQLitespeed is another feature-rich premier SQLite manager (includes import/export). Well worth a try.
SQLite Expert (freeware Personal Edition or payware Pro version) is a very useful SQLite database manager.
An excellent eBook covering almost every aspect of SQLite3: a must-read for anyone doing serious work.
SQL tutorial (covers "generic" SQL, but most of it applies to SQLite as well)
A work-in-progress SQLite3 tutorial. Don't miss other LxyzTHW pages!
SQLite official website with full documentation (may be newer than the SQLite library that comes standard with AutoIt)

Link to comment
Share on other sites

i'm working on a script that has quite big arrays... and im tired of getting confused by numbers... words would explain the value of the element and make things a lot easier

Now I understand much better what you need.

Use Enum to define your constants then use them directly:

Global Enum $_firstname, $_familyname, $_adrs1, $_adrs2, $_city, $_zip, $_state, $_country, $_email

Local $array[1][9] = [["Fred", "Stone", "1450 AutoIt Avenue", "", "Paris", "78563", "TEXAS", "USA", "fred.stone@autoit.net"]]
Local $zip1, $zip2

;; now you can access ZIP code with either colomn number or colomn name
$zip1 = $array[0][5]
$zip2 = $array[0][$_zip]

MsgBox(0, "Access successful ?", $zip1 = $zip2)

This wonderful site allows debugging and testing regular expressions (many flavors available). An absolute must have in your bookmarks.
Another excellent RegExp tutorial. Don't forget downloading your copy of up-to-date pcretest.exe and pcregrep.exe here
RegExp tutorial: enough to get started
PCRE v8.33 regexp documentation latest available release and currently implemented in AutoIt beta.

SQLitespeed is another feature-rich premier SQLite manager (includes import/export). Well worth a try.
SQLite Expert (freeware Personal Edition or payware Pro version) is a very useful SQLite database manager.
An excellent eBook covering almost every aspect of SQLite3: a must-read for anyone doing serious work.
SQL tutorial (covers "generic" SQL, but most of it applies to SQLite as well)
A work-in-progress SQLite3 tutorial. Don't miss other LxyzTHW pages!
SQLite official website with full documentation (may be newer than the SQLite library that comes standard with AutoIt)

Link to comment
Share on other sites

Now I understand much better what you need.

Use Enum to define your constants then use them directly:

Global Enum $_firstname, $_familyname, $_adrs1, $_adrs2, $_city, $_zip, $_state, $_country, $_email

Local $array[1][9] = [["Fred", "Stone", "1450 AutoIt Avenue", "", "Paris", "78563", "TEXAS", "USA", "fred.stone@autoit.net"]]
Local $zip1, $zip2

;; now you can access ZIP code with either colomn number or colomn name
$zip1 = $array[0][5]
$zip2 = $array[0][$_zip]

MsgBox(0, "Access successful ?", $zip1 = $zip2)
that is exactly what i was looking for ^_^ thanks a lot ichd!

sorry that my explanation was so missleading ;)

Zephir

Link to comment
Share on other sites

Search the forum for aGorilla's HASH.au3 UDF... this is exactly what it is for.

Dale

Free Internet Tools: DebugBar, AutoIt IE Builder, HTTP UDF, MODIV2, IE Developer Toolbar, IEDocMon, Fiddler, HTML Validator, WGet, curl

MSDN docs: InternetExplorer Object, Document Object, Overviews and Tutorials, DHTML Objects, DHTML Events, WinHttpRequest, XmlHttpRequest, Cross-Frame Scripting, Office object model

Automate input type=file (Related)

Alternative to _IECreateEmbedded? better: _IECreatePseudoEmbedded  Better Better?

IE.au3 issues with Vista - Workarounds

SciTe Debug mode - it's magic: #AutoIt3Wrapper_run_debug_mode=Y

Doesn't work needs to be ripped out of the troubleshooting lexicon. It means that what you tried did not produce the results you expected. It begs the questions 1) what did you try?, 2) what did you expect? and 3) what happened instead?

Reproducer: a small (the smallest?) piece of stand-alone code that demonstrates your trouble

Link to comment
Share on other sites

  • Moderators

All,

Thanks for the illuminating replies - always good to learn new tricks.

M23

Public_Domain.png.2d871819fcb9957cf44f4514551a2935.png Any of my own code posted anywhere on the forum is available for use by others without any restriction of any kind

Open spoiler to see my UDFs:

Spoiler

ArrayMultiColSort ---- Sort arrays on multiple columns
ChooseFileFolder ---- Single and multiple selections from specified path treeview listing
Date_Time_Convert -- Easily convert date/time formats, including the language used
ExtMsgBox --------- A highly customisable replacement for MsgBox
GUIExtender -------- Extend and retract multiple sections within a GUI
GUIFrame ---------- Subdivide GUIs into many adjustable frames
GUIListViewEx ------- Insert, delete, move, drag, sort, edit and colour ListView items
GUITreeViewEx ------ Check/clear parent and child checkboxes in a TreeView
Marquee ----------- Scrolling tickertape GUIs
NoFocusLines ------- Remove the dotted focus lines from buttons, sliders, radios and checkboxes
Notify ------------- Small notifications on the edge of the display
Scrollbars ----------Automatically sized scrollbars with a single command
StringSize ---------- Automatically size controls to fit text
Toast -------------- Small GUIs which pop out of the notification area

 

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
 Share

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...