Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Rhinorhino on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Recent content by alspoll

  1. alspoll

    Text File Manipulation again...

    Told you it was a stupid question... Dim FSO, objFile, strDestin, strFile, strSource Set FSO = CreateObject("Scripting.FileSystemObject") Const ForReading = 1 strSource = "c:\A.txt" strDestin = "c:\A.txt" Set objFile = FSO.OpenTextFile(strSource, ForReading) strFile="" if not...
  2. alspoll

    Removing text from a string

    Hello all, i have a string formatted as a@b@c@d@e how can i just have d@e or b@e? TIA, hope this makes sense. AL
  3. alspoll

    Text File Manipulation again...

    Thank you... not to ask a stupid question, but do i just insert that text into the script and do not chnage the regex pattern? Dim FSO, objFile, RegEx, strDestin, strFile, strSource Set FSO = CreateObject("Scripting.FileSystemObject") Set RegEx = New RegExp RegEx.Global = True RegEx.Pattern...
  4. alspoll

    Text File Manipulation again...

    Hello all, I have been searching these threads for a script to format a list i have in a text file. The text is formatted as 3RD AND THE MORTAL, THE\MEMOIRS What I wold like is MEMOIRS\3RD AND THE MORTAL, THE I have this script which i used for a names list, but I do not know how to change...
  5. alspoll

    Text file Manipulation

    Thank you VERY much for the quick reply...
  6. alspoll

    Text file Manipulation

    Hello all, I have been searching these threads for a script to format a names list i have in a text file. The names are formatted as Last Name, First Name What I wold like is First Name Last Name I found this script on another forum and tried to adapt it to my situation to no avail: Dim...

Part and Inventory Search

Back
Top