Jump to content

Exact match from array


Go to solution Solved by FireFox,

Recommended Posts

; os.txt
;| IP         | OS         |
;---------------------------
;| 10.0.1.21  | Windows    |
;| 10.0.1.22  | Windows 8  |
;| 10.0.1.23  | Windows 8  |
;| 10.0.1.24  | Windows    |
;| 10.0.1.25  | Windows    |
;| 10.0.1.26  | Windows 8  |



#include <Array.au3>

Local $os = "os.txt"

Local $answer = StringRegExp(FileRead($os), '(?m)^.*Windows.*$', 3)
_ArrayDisplay($answer)

 

 

Hi, I need to display in array only lines that contains Windows, not Windows 8.

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