webflight_sf25 Posted February 19, 2004 Posted February 19, 2004 Hi! The file has about 15000 rows and how to find the EOL in this string (myvar) Host Name = bravo If the row was Host Name = bravo"/> StringGetPos, output, myvar, "/> EnvAdd, output, 3 but there is no "/> Please heeelp ///
Beastmaster Posted February 19, 2004 Posted February 19, 2004 Have a try to (pre)set the search pattern as a variable ... ----- SetEnv, EOL, "/> StringGetPos, output, myvar, %EOL% EnvAdd, output, 3 MsgBox,0,EOL Checker, EOL is at string pos: %output% ----- Sorry, haven't tested it - check it out.
Recommended Posts