Is there a way to pull a line up without leaving a space? when using "^r" there is an "invisible space on the line.
Example:
PHP Code:
i = 0
if(iFile)
{
new szData[120], szData1[120]
while(fgets(iFile, szData, charsmax(szData)))
{
i++
switch(szData[0])
{
case EOS, ';', '/': continue
default:
{
parse(szData, szData1, charsmax(szData1))
if(equal(szData1, example))
{
write_file(szConfig, "^r", i-1)
break
}
}
}
}
fclose(iFile)
}
__________________