Connecting Tech Pros Worldwide Help | Site Map

String manipulation

Andy McNamara
Guest
 
Posts: n/a
#1: Oct 26 '06
Very simple questions,
I have some data of strings, say, str1,sting2,stringstring3,etc
I also have a text file that needs to be filled upat some empty places,
I need to do this in javascript, could you help me with some apis that
can do this ? I am completely new to javascript. any help is appreciated.
Evertjan.
Guest
 
Posts: n/a
#2: Oct 26 '06

re: String manipulation


Andy McNamara wrote on 27 okt 2006 in comp.lang.javascript:
Quote:
Very simple questions,
Not for me, see below, Andy.
Quote:
I have some data of strings, say, str1,sting2,stringstring3,etc
What is/are "data of strings"?

Are "str1, sting2, stringstring3" names of string [sting?] variables?
Quote:
I also have a text file that needs to be filled upat some empty places,
How can a text file have empty places?

A textfile being/containing a string of characters.
Quote:
I need to do this in javascript,
Why do you need to do that in javascript?
Quote:
could you help me with some apis that
What are apis?
Quote:
can do this ?
Do what?
Quote:
I am completely new to javascript. any help is appreciated.
We all were at some point in time.

--
Evertjan.
The Netherlands.
(Please change the x'es to dots in my emailaddress)
ASM
Guest
 
Posts: n/a
#3: Oct 26 '06

re: String manipulation


Andy McNamara a écrit :
Quote:
Very simple questions,
I have some data of strings, say, str1,sting2,stringstring3,etc
I also have a text file that needs to be filled upat some empty places,
I need to do this in javascript, could you help me with some apis that
can do this ? I am completely new to javascript. any help is appreciated.
JavaScript can't write in a file.

You'l have to ask that to PHP for instance.

(eventually using XMLHttpRequest javascript function)
Evertjan.
Guest
 
Posts: n/a
#4: Oct 26 '06

re: String manipulation


ASM wrote on 26 okt 2006 in comp.lang.javascript:
Quote:
Andy McNamara a écrit :
Quote:
>Very simple questions,
>I have some data of strings, say, str1,sting2,stringstring3,etc
>I also have a text file that needs to be filled upat some empty
>places, I need to do this in javascript, could you help me with some
>apis that can do this ? I am completely new to javascript. any help
>is appreciated.
>
JavaScript can't write in a file.
You'l have to ask that to PHP for instance.
Javascript can write a file just as well as php,
both as serverside code.

Javascript can use Scripting.FileSystemObject

Javascript in wscript or cscript can too.
Quote:
(eventually using XMLHttpRequest javascript function)
Eventually? Oh, as part of Ajax?

--
Evertjan.
The Netherlands.
(Please change the x'es to dots in my emailaddress)
ASM
Guest
 
Posts: n/a
#5: Oct 26 '06

re: String manipulation


Evertjan. a écrit :
Quote:
>
Javascript can write a file just as well as php,
both as serverside code.
>
Javascript can use Scripting.FileSystemObject
can you give me an example ?

Evertjan.
Guest
 
Posts: n/a
#6: Oct 26 '06

re: String manipulation


ASM wrote on 26 okt 2006 in comp.lang.javascript:
Quote:
Evertjan. a écrit :
Quote:
>>
>Javascript can write a file just as well as php,
>both as serverside code.
>>
>Javascript can use Scripting.FileSystemObject
>
can you give me an example ?
Under classic ASP:

<script language='jscript' runat='server'>

var fso, tf;
fso = new ActiveXObject('Scripting.FileSystemObject');
tf = fso.CreateTextFile(Server.MapPath('/myDir/myfile.txt'), true);

// Write a line with a newline character.
tf.WriteLine('Testing 1, 2, 3.') ;

// Write three newline characters to the file.
tf.WriteBlankLines(3) ;

// Write a text.
tf.Write ('This is a test.');
tf.Close();

</script>

not tested

--
Evertjan.
The Netherlands.
(Please change the x'es to dots in my emailaddress)
ASM
Guest
 
Posts: n/a
#7: Oct 26 '06

re: String manipulation


Evertjan. a écrit :
Quote:
ASM wrote on 26 okt 2006 in comp.lang.javascript:
>
Quote:
>Evertjan. a écrit :
Quote:
>>Javascript can write a file just as well as php,
>>both as serverside code.
>>>
>>Javascript can use Scripting.FileSystemObject
>can you give me an example ?
>
Under classic ASP:
would that work in my FireFox ?

I undersdand it is server-side script.

If it is :
- would that work in my Apache ?
- if not what javascript script could I use
(with an example it is better for my poor mind)

MapPath() is a generic function ? (to say : localhost)
Quote:
<script language='jscript' runat='server'>
>
var fso, tf;
fso = new ActiveXObject('Scripting.FileSystemObject');
tf = fso.CreateTextFile(Server.MapPath('/myDir/myfile.txt'), true);
>
// Write a line with a newline character.
tf.WriteLine('Testing 1, 2, 3.') ;
>
// Write three newline characters to the file.
tf.WriteBlankLines(3) ;
>
// Write a text.
tf.Write ('This is a test.');
tf.Close();
>
</script>
>
not tested
Evertjan.
Guest
 
Posts: n/a
#8: Oct 26 '06

re: String manipulation


ASM wrote on 26 okt 2006 in comp.lang.javascript:
Quote:
Evertjan. a écrit :
Quote:
>ASM wrote on 26 okt 2006 in comp.lang.javascript:
>>
Quote:
>>Evertjan. a écrit :
>>>Javascript can write a file just as well as php,
>>>both as serverside code.
>>>>
>>>Javascript can use Scripting.FileSystemObject
>>can you give me an example ?
>>
>Under classic ASP:
Read up about ASP.
Quote:
>
would that work in my FireFox ?
>
I undersdand it is server-side script.
>
If it is :
- would that work in my Apache ?
- if not what javascript script could I use
(with an example it is better for my poor mind)
>
MapPath() is a generic function ? (to say : localhost)
>
Quote:
><script language='jscript' runat='server'>
>>
> var fso, tf;
> fso = new ActiveXObject('Scripting.FileSystemObject');
> tf = fso.CreateTextFile(Server.MapPath('/myDir/myfile.txt'), true);
>>
> // Write a line with a newline character.
> tf.WriteLine('Testing 1, 2, 3.') ;
>>
> // Write three newline characters to the file.
> tf.WriteBlankLines(3) ;
>>
> // Write a text.
> tf.Write ('This is a test.');
> tf.Close();
>>
></script>
>>
>not tested
>
>


--
Evertjan.
The Netherlands.
(Please change the x'es to dots in my emailaddress)
ASM
Guest
 
Posts: n/a
#9: Oct 26 '06

re: String manipulation


Evertjan. a écrit :
Quote:
ASM wrote on 26 okt 2006 in comp.lang.javascript:
>
Quote:
>Evertjan. a écrit :
Quote:
>>ASM wrote on 26 okt 2006 in comp.lang.javascript:
>>>
>>>Evertjan. a écrit :
>>>>Javascript can write a file just as well as php,
>>>>both as serverside code.
>>>>>
>>>>Javascript can use Scripting.FileSystemObject
>>>can you give me an example ?
>>Under classic ASP:
>
Read up about ASP.
thank you.
Randy Webb
Guest
 
Posts: n/a
#10: Oct 26 '06

re: String manipulation


ASM said the following on 10/26/2006 4:12 PM:
Quote:
Andy McNamara a écrit :
Quote:
>Very simple questions,
>I have some data of strings, say, str1,sting2,stringstring3,etc
>I also have a text file that needs to be filled upat some empty places,
>I need to do this in javascript, could you help me with some apis that
>can do this ? I am completely new to javascript. any help is appreciated.
>
JavaScript can't write in a file.
FSO in IE can!

JScript in ASP can.

Perhaps you meant "Javascript in a default security environment on a web
page can't write a file on the local hard drive".

--
Randy
Chance Favors The Prepared Mind
comp.lang.javascript FAQ - http://jibbering.com/faq
Javascript Best Practices - http://www.JavascriptToolbox.com/bestpractices/
Dr J R Stockton
Guest
 
Posts: n/a
#11: Oct 27 '06

re: String manipulation


In message <45411695$0$25955$ba4acef3@news.orange.fr>, Thu, 26 Oct 2006
22:12:05, ASM <stephanemoriaux.NoAdmin@wanadoo.fr.invalidwrite s
Quote:
>Andy McNamara a écrit :
Quote:
>Very simple questions,
>I have some data of strings, say, str1,sting2,stringstring3,etc
>I also have a text file that needs to be filled upat some empty places,
>I need to do this in javascript, could you help me with some apis
>>that can do this ? I am completely new to javascript. any help is
>>appreciated.
>
>JavaScript can't write in a file.
>
>You'l have to ask that to PHP for instance.
>
>(eventually using XMLHttpRequest javascript function)
<FAQENTRY>, somewhere around 2.2 - I suggest a short section/paragraph
along the general lines of :

Javascript is a general term covering very similar languages used in
differing environments, including client-side Web (the default
assumption in c.l.j), server-side Web (on-topic in c.l.j), and Windows
programming (CScript, WScript, for which news:microsoft.* is preferred).
(any other environments?)


It's a good idea to read the newsgroup and its FAQ. See below.

--
(c) John Stockton, Surrey, UK. ?@merlyn.demon.co.uk Turnpike v6.05 IE 6
<URL:http://www.jibbering.com/faq/>? JL/RC: FAQ of news:comp.lang.javascript
<URL:http://www.merlyn.demon.co.uk/js-index.htmjscr maths, dates, sources.
<URL:http://www.merlyn.demon.co.uk/TP/BP/Delphi/jscr/&c, FAQ items, links.
Laurent Bugnion
Guest
 
Posts: n/a
#12: Oct 28 '06

re: String manipulation


Hi,

ASM wrote:
Quote:
Evertjan. a écrit :
Quote:
>ASM wrote on 26 okt 2006 in comp.lang.javascript:
>>
Quote:
>>Evertjan. a écrit :
>>>ASM wrote on 26 okt 2006 in comp.lang.javascript:
>>>>
>>>>Evertjan. a écrit :
>>>>>Javascript can write a file just as well as php,
>>>>>both as serverside code.
>>>>>>
>>>>>Javascript can use Scripting.FileSystemObject
>>>>can you give me an example ?
>>>Under classic ASP:
>>
>Read up about ASP.
>
thank you.
Actually, forget ASP and read about ASP.NET ;-)

Just kidding. It's true that using JavaScript on ASP to program both the
client and the server was kind of neat. But I wouldn't go back from .NET.

About saving files: Client-side JavaScript running in a browser can do
that too, but it needs the right permissions.

See this
http://www.galasoft-lb.ch/myjavascri...rer/index.html

This feature allows, for example, to write HTA (HTML Applications)
running in IE but having the same permissions as a standalone
application. Think of it as having the ease of a VBA application, but
without having to touch VB (yuk).

HTH,
Laurent
--
Laurent Bugnion, GalaSoft
Software engineering: http://www.galasoft-LB.ch
PhotoAlbum: http://www.galasoft-LB.ch/pictures
Support children in Calcutta: http://www.calcutta-espoir.ch
ASM
Guest
 
Posts: n/a
#13: Oct 28 '06

re: String manipulation


Laurent Bugnion a écrit :
Quote:
Hi,
Salut,
I've been
I'll look at home (locally)
Quote:
This feature allows, for example, to write HTA (HTML Applications)
running in IE but having the same permissions as a standalone
application. Think of it as having the ease of a VBA application, but
without having to touch VB (yuk).
Unlovely, on my Mac I use any M$ possibilities,
(vb vba vscript hta htc are not for me and anyway of no use)
I'm not more advanced
(et avec Apache sur mon Mac de quoi je dispose?)
Quote:
HTH,
that could :-)

Stephane
Closed Thread