Parsing A Text File With Vbscript
I know this is a little off topic, but this is the best resource I know of for anything coding related.
I'm needing to read through a text file that will have the following format:
c:ools
c:docs
c:htdocs
And have the the results put in an array for later processing. What I'm trying to build is a small vbscript that will automatically backup each path that may be in a given txt file.
View Replies
ADVERTISEMENT
I have a text file that is the result of using XMLHTTP object to pull back a
page of search results from a search engine.
So I have the entire results page in HTML, and want to break out each hit
result from the text file as a unique item and do what I want with each hit
result.
Is there any suggested algorithms or any other techniques I could be
directed to?
View Replies
View Related
i had a vbscript that will read the text file from the bottom to the top, and after reading the file, it will be displayed in the screen, and the code look like this:
PHP Code: Code:
View Replies
View Related
where can i find a detailed example of the xml dom object/parser in use?
I am using the Microsoft.XMLDOM Com Object
since it is not possible to hold custom classes in the session object, i want to serialize all my classes into xml text, then extract the text, parse it, and restore the class.
I can't find any good examples online for how to parse multi-nested xml files/strings through the above Control. Code:
View Replies
View Related
What I need to do is parse a string, then create variables for each word. Example:
- someone enters "cats and dogs" in the text field
- I need to end up with:
firstWord = "cats"
secondWord ="and"
thirdWord ="dogs"
Then I will use the variables firstWord, secondWord, thirdWord later in my app.
View Replies
View Related
In my main 'submit news' admin for a site I am doing, I want to be able to offer the person submitting the news the ability to reference other files within their text without the need to use HTML. My proposal is to use [square brackets] within the text that will then be parsed when the page is rendered from the database. At present I have this - e.g.
To download the file [file.exe, click here]. Which I want to render with the words 'click here' as being a link to file.exe. I'm very familiar with instr, replace and split (all of which I think I would need to use) but I cannot figure out how to parse the above text in the way I want.
View Replies
View Related
Let's say that I have the string below:
<title>Partly Cloudy and 73 degrees F at Pitt-Greenville Airport, NC</title>
In an ASP file, how would I get the three characters before the word "degrees"? In this particular case, it would be "73 ". Obviously, I'm trying to extract the degrees from this weather string (which is from the National Weather Service, in case anyone is wondering). If anybody knows a better way to get the degrees information from this string.
EDIT: Nevermind. I found that the National Weather Service also offers an XML version that has the degrees totally separated. (The one above is from an RSS feed rather than straight XML.) Having it in this form makes it much easier to parse.
View Replies
View Related
I want to use asp to do text find and replace with XHTML elements. for example, let's say I have the following XHTML:
<note>
<from id="123">Jani</from>
<to>Tove</to>
<message>Norwegian: æøå. French: êèé</message>
</note>
I want to read this document in, find and XML element with id="123" and replace its text with "New author".
Can I do this in ASP?
View Replies
View Related
Hey so I ran into a pretty big problem here and hoping someone could lend some advice.
Scenario:
- User uploads CSV file to server through ASP form (Check)
- ASP then reads that file parses it throws in a HTML table for user to preview (Check)
- Throw headers and body columns into 2 seperate array to store for database saving capability (Check)
- If user has a "," in the header name or a field entry things go crazy! (Check)
That's the process and all is great except if there is a comma in one of the field entries or in the header names. Code:
View Replies
View Related
I'm using the code below to get the contents of a remote file on my domain.
The problem is all the "£" signs are being changed to "?" signs.
Does anyone know why and how to fix it.
Set xmlhttp = CreateObject("MSXML2.ServerXMLHTTP")
url "http://www.domain.com/file.asp"
xmlhttp.open "GET", url, false
xmlhttp.send()
Response.write xmlhttp.responseText
View Replies
View Related
I'm needing some help on this. I need to know how to parse a file path for the file name in a browse box. Lets say I have a browse box in a form with the input of
C:/somedirectory/somefile.asp
I need a piece of code that could convert the input into just somefile.asp?
View Replies
View Related
I have a user that has a PTF containing a list of values. Instead of this user manually entering each value into our DB we want to automate the data entry as much as possible. Is it possible to write a page that can read the contents of a file the user points to on their computer?
View Replies
View Related
Its purely for aesthetics - not essential but i thought it would add a refined touch.
I want to get an effect where it types the text accross the screen as if it was being typed a letter at a time. For example to write "Hi guys" it would write:
H
Hi
Hi
Hi g
Hi gu
Hi guy...
etc etc but not all on a new line.
I figure this is possible using loops and so on, but to get the effect that I want I will need to make the script wait between printing each letter. Is there a VBscript command for this or will I have to start using ActiveX controls or something?
View Replies
View Related
I have a VBScript function:
<script language="VBScript" type="text/vbscript">
Function Main()
set wshshell = createobject("wscript.shell")
struser = wshShell.ExpandEnvironmentStrings("%USERNAME%")
strdomain = wshShell.ExpandEnvironmentStrings("%USERDOMAIN%")
msgbox struser & strdomain
End Function
</script>
That works great as a Active X script but I want this to display as a value in a text field and I can't find how o do that.
View Replies
View Related
I have an asp page written entirely in jscript with a vbscript used as an include file which one variable on the page must access.
When the page runs, I run into jscript complilation errors when it tries to access the include file (since it is written in vbscript), and I can't figure out how to get the two to work together. How do you get both scripting languages to work on the same page?
View Replies
View Related
i would like to add a user and set file permission to a file with ASP.
(No component). is that possible ? do you have a link ? an example ?
View Replies
View Related
i'm converting an image file to hexa..then the hexa is saved to a text file..
can any one help me how to read the content text of a text file?...
im doing it this way because i don't want to save hexa in my database, because it makes the database slower to open up.
View Replies
View Related
Is there a function in VBScript that will return the name of the file
that is currently being executed? Basically, I'm looking for a function
that I can use in code similar to this...
<% response.write "The name of this file is - " thisFile.fileName %>
which will result in
The name of this file is - home.asp
being displayed on the page with home.asp executes.
View Replies
View Related
I'm writing an intranet-only browser based application. I need to launch either a SETUP.EXE that is on a network drive or a shortcut on a local drive that points to the exe on the network drive
I already know how to launch a local exe, for example:
Set objApp = CreateObject("WScript.Shell")
objApp.Run "cmd /C CD C: & Program Files & SomeFolder & SETUP"
View Replies
View Related
I have a batch file that needs to execute every day and I need to run it in a silent/invisible mode. I looked up on the Internet and found this command: shell("batchfilename.bat").
Upon failure, learned that it is a Visual Basic command and not VBScript command. I wonder if anyone knows how to run a batch file using vbscript that runs in invisible mode?
View Replies
View Related
What options/methos/properties/functions/objects do I have in order to
create a Function in ASP/VBScript that process/create binary data as an image
file type?
The Function is supoosed to get 2 parameters:
1. The file image content type defined as "image/bmp" , strContentType
2. the file binary data, binDataImageBytes (which is stored in session
vars)
The Function should return/create an Image File , for instance
~tmpImg.BMP
My Question is
How to create a binary Image file type from the session var binary
data ?
View Replies
View Related
Does anyone know of a method of converting text files to sound files (.wav, mp3 etc) which can be accessed from ASP?
I have an ASP-based website that enables users to design choreography for equestrian dressage. The resulting design is held as a series of coded movements in a database and it can then be reproduced as text or as a series of diagrams. I would like to offer the option of an audio version.
View Replies
View Related
I want to include a file in a web page according to some details that are retrieved from a database. I have typed the following code:
<% filename = Session("LModCode") & Session("ClassID") & ".inc" %>
<!--#include file="<%=filename%>" -->
This doesn't work. There is nothing wrong with Session variables that I know of, both values are present when i write them to the page. Is it not possible to use vbscript within an include statement?
View Replies
View Related
I am trying to dynamically generate links on a webpage base on a list of file using their title property as the link text. My problem is I don't know how to get the title property of the file. Is there a object or dll i can use?
View Replies
View Related
Is there a way to check if a file exist using VBScript in an ASP page.
So the code might go something like this:
If Exists("C:Junk1.txt") then
Do something
Else
Do something else
End If
View Replies
View Related
I have a page that creates a .CSV file that has been migrated over to
Windows Server 2003 from Windows 2000 Server. It worked fine before I
moved it, but now when it creates the .CSV file, and you open it, the
first row opens in cell A1 and the second row opens in cell A2. Code:
View Replies
View Related
Does anyone have knowledge of converting text file to .iff file. I am working on a VB ASP application. I searched for example on internet but I didn't get anything.
If you have any idea of converting text file to .iff file (VB ASP) please share with me.
View Replies
View Related
I want to read an asp file as a text file. The problem is that the file that I want it to read is located on a server. For example: I want to read te content of this file: http://www.bnro.ro/Ro/Info/default.asp . I want to look after some values in that file.
View Replies
View Related
how can i write a line to a text file? also, how can i put every line of a text file into an array - and see whether a value mathes any of the lines in the array?
View Replies
View Related
I have an asp page that is populated by an access db, I want to create a text file on the server based on the asp file. Then provide a link for people to download that text file. How would I do this quickly?
View Replies
View Related
I've a very small form just a name and a few checkboxes.when user submits the form, we want to store the data in a CSV text file and send an email to one of us here. Has any one had done it before please give me some ideas how to do it.
View Replies
View Related
I'm using ASP 3.0. I'm taking form contents and dumping it into a text file
on the server. how to add the TIME to this statement. I create the text file with the name of file, month, day and year.I would like to add TIME to it.
-------------------------------------------------------------
set fso = createobject("scripting.filesystemobject")
Set act = fso.CreateTextFile(server.mappath("/data/"&g_filename & "-"&
month(date())& day(date())& year(date()) &".htm"), true)
-------------------------------------------------------------
View Replies
View Related
is asp code able to do the extraction of text from PDF File without using a third party software?
View Replies
View Related