Recent content by abhii_sagii

  1. A

    Using Perl I want to split a line and output the value according the Index

    number given at the end of line.? eg. line is "separate a,b,c,3" so i want to output c here as index is 3. similarly output b if index is 2.
  2. A

    How to exit from a loop in asp?

    if condition then do.... else "i want to exit to next loop here" end if if condition do ,..... else do..... Above, i want to do nothing in first else statement and just want to go to next if else. Any suggestions
  3. A

    Reading File in ASP. or How to use pattern matching in asp?

    I am using asp. I want to read a file and check if a "Test Name" is already been used before or not. Right now what i am doing is reading a file and just read first 9 character of each line because that file have "Test Name" written at the starting of line. After that i want to break and move to...
  4. A

    How to exit from a loop in asp?

    if condition then do.... else "i want to exit to next loop here" end if if condition do ,..... else do..... Above, i want to do nothing in first else statement and just want to go to next if else. Any suggestions
  5. A

    In asp str= InStr(1,read,"Test Name = abc",1) instead of abc i want to put a

    user input value.? i want to add something like this $a instead of abc where a can be user input value. Any suggestions??
  6. A

    Reading File in ASP. or How to use pattern matching in asp?

    I am using asp. I want to read a file and check if a "Test Name" is already been used before or not. Right now what i am doing is reading a file and just read first 9 character of each line because that file have "Test Name" written at the starting of line. After that i want to break and move to...
Back
Top