Re: [Gambas-user] Delete sentance between words in a file.

2012-03-28 Thread nando
Yup. Too much beer. -- Original Message --- From: Rolf-Werner Eilert To: gambas-user@lists.sourceforge.net Sent: Wed, 28 Mar 2012 11:58:43 +0200 Subject: Re: [Gambas-user] Delete sentance between words in a file. > Just > > > D = B + C 'Comb

Re: [Gambas-user] Delete sentance between words in a file.

2012-03-28 Thread Rolf-Werner Eilert
Just > D = B + C 'Combine both together D = B & C should be correct, right? Regards Rolf -- This SF email is sponsosred by: Try Windows Azure free for 90 days Click Here http://p.sf.net/sfu/sfd2d-msa

Re: [Gambas-user] Delete sentance between words in a file.

2012-03-27 Thread nando
A,Y) 'Keep the second part: Position 24 ..end = 24..29 D = B + C 'Combine both together PRINT D 'result: D = "A Desks" -- Original Message ------- From: tobi To: sundar_...@rediffmail.com, mailing list for gambas users Se

Re: [Gambas-user] Delete sentance between words in a file.

2012-03-27 Thread tobi
hi, On Mon, 26 Mar 2012, sundar j wrote: > How do i delete a sentence/line between two matching words? For example i > have a long paragraph starting with ABC-Start and ending with XYZ-End. I need > to delete all the words including ABC-Start & XYZ-End. I have gone > through the gambas document

Re: [Gambas-user] Delete sentance between words in a file.

2012-03-26 Thread Emil Lenngren
Maybe you want to use a regular expression? 2012/3/26 sundar j > How do i delete a sentence/line between two matching words? For example i > have a long paragraph starting with ABC-Start and ending with XYZ-End. I > need to delete all the words including ABC-Start & XYZ-End. I have gone > throug

[Gambas-user] Delete sentance between words in a file.

2012-03-26 Thread sundar j
How do i delete a sentence/line between two matching words? For example i have a long paragraph starting with ABC-Start and ending with XYZ-End. I need to delete all the words including ABC-Start & XYZ-End. I have gone through the gambas documentation and found replace string function. However i