Jump to content

IniReadSection to StringInStr


iceberg
 Share

Recommended Posts

ini file looks like this:

[config]

1=sp1

2=sp2

3=sp3

4=ie7

5=ie8

code begins here:

$data = "iwejdfknxsjkfksdh"

$var = IniReadSection("myfile.ini", "config")

For $i = 1 To $var[0][0]

MsgBox(4096, "", "Key: " & $var[$i][0] & @CRLF & "Value: " & $var[$i][1])

Next

$result = StringInStr($data, $var[0][0])

how do i make it such that the $result must do comparison with all the entries in inireadsection, in just 1 line? is it possible?

thanks.

mouse not found....scroll any mouse to continue.

Link to comment
Share on other sites

  • Moderators

iceberg,

This script will only react if the ini value is found in the data:

$data = "iwejdfknxsp3jkfksdh" ; Altered so there is a match for sp3

$var = IniReadSection("myfile.ini", "config")

For $i = 1 To $var[0][0]
    If StringInStr($data, $var[$i][1]) Then MsgBox(0, "Found", "Matched " & $var[$i][1])
Next

Is that what you were after?

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 for the reply Melba23.

silly me, i was not clear enough.....

maybe it can't be done in just 1 line i guess.

but this is what i want..

the codes you provided parses the ini file entries one by one.

i was thinking if it is possible to dump all the entries into an array and the compare them in StringInStr.

like this i mean....

$data = "iwejdfknxsp3jkfksdh" ; Altered so there is a match for sp3

$var = IniReadSection("myfile.ini", "config")

make this $var into an array called...$array

then possible to do this?

If StringInStr($data, $array) Then MsgBox(0, "Found", "Matched")

thanks.

mouse not found....scroll any mouse to continue.

Link to comment
Share on other sites

  • Moderators

iceberg,

$var already is an array - that is what you get as a return value from IniReadSection. And you have to use a loop to run through the elements and see if they exist in $data.

Why do you want it in only a single line? It only takes 3 at the moment ! :D

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...