Search the Community
Showing results for tags 'first posted scriptz'.
-
StringBetween capturing multiple lines
SOCCERMOMMY posted a topic in AutoIt General Help and Support
Hello all, First time posting; please excuse my noobness as I am self-taught over a short period with very little programming experience. However, I am trying to create a simple program that retrieves college basketball scores from the web, puts them into an array and writes to excel. Ultimately I want to create an additional variable that would be a date range so the program can cycle through many pages and retrieve years worth of information at a time. For now, I am working on a single day. Here is where I am stuck: I want to use _StringBetween to isolate team names while consideri- 18 replies
-
- stringbetween
- noob
-
(and 1 more)
Tagged with:
-
This is the first script iv posted here. A very slow Conways Game of Life I Think ill just leave this here... #cs Author: mv2112 Based on Conway's Game of Life Do with this code as you please! #ce #include <GUIConstantsEx.au3> Global $DEAD = 0x000000 Global $ALIVE = 0x00FF00 _Main() Func _Main() $gui = GUICreate("mv2112's Take on Conway's Game of Life", 375, 374) Global $aMap[25][25][2] Global $temp[25][25][2] For $x = 0 To UBound($aMap) - 1 For $y = 0 To UBound($aMap, 2) - 1 $char = $DEAD $num = Int(Random(0, 1000)) If Mod($num, 5) = 0 Then $char = $ALIVE EndIf $a