Search found 15 matches

by skwareks
Mon Dec 05, 2005 7:47 pm
Forum: General
Topic: help with Regular Expression
Replies: 6
Views: 672

Ok. Here is the example of content of the file: ESKWAERKS@YAHOO.COM SPPPPPP ELECTRONIC TTTT TTTTTTTT BDateDDDDDD /30/02 ESKWAERK2@YAHOO.COM SPPPPPP ELECTRONIC TTTT TTTTTTTT BDateDDDDDD /30/02 Now I need to divide the file into mulitple files so it will become File1 ESKWAERKS@YAHOO.COM SPPPPPP ELECTR...
by skwareks
Mon Dec 05, 2005 6:56 pm
Forum: General
Topic: help with Regular Expression
Replies: 6
Views: 672

Yes, I tried that but then it looks into all strings in the given line. I need it to look at only the first letter of the first string.... :-( .. any ideas?
by skwareks
Mon Dec 05, 2005 6:19 pm
Forum: General
Topic: help with Regular Expression
Replies: 6
Views: 672

help with Regular Expression

I need a regular expression that will only match the Letter "E" which is the first character in line of first sting so:

E<email>

I need to find incorporate regular expression that will only look for the lines that start with an E. Any ideas? :-) Is it possible?
by skwareks
Tue Jun 21, 2005 4:13 pm
Forum: WildEdit
Topic: Wild character
Replies: 0
Views: 610

Wild character

Hi Everyone, I need some help again from you guys :-). I have a code that is not the same in all files. The part that is different in every file is marked as >>> ..... javacode.... <<<. Basically I am trying to use a wild character that will match and replace anything that is in >>> javacode <<<. So...
by skwareks
Mon Jun 06, 2005 8:35 pm
Forum: WildEdit
Topic: remove data
Replies: 4
Views: 895

ok, I am trying to remove everything after

^symbolset 108

in all files
by skwareks
Mon Jun 06, 2005 6:54 pm
Forum: WildEdit
Topic: remove data
Replies: 4
Views: 895

remove data

Hi All,

Need some help! :-) I have over 200 files where I need to remove everything after

^symbolset 108


Does anyone know what I should search for?

Search For:
^symbolset 108.*

Replace with:
^symbolset 108

Thank You in advance!
by skwareks
Tue May 03, 2005 1:07 pm
Forum: WildEdit
Topic: find files
Replies: 5
Views: 948

Great! Thank You very much!!!
by skwareks
Mon May 02, 2005 8:32 pm
Forum: WildEdit
Topic: find files
Replies: 5
Views: 948

first I was getting over 500 replacements in 3 test files where there should be not more than 15. then I used <integer name="MaxChars">([5-9]|[0-9]{2,})</integer> and I got correct count. Can you please tell me what should I change if next I want to find files with MaxChar =>85 I don't und...
by skwareks
Mon May 02, 2005 7:13 pm
Forum: WildEdit
Topic: find files
Replies: 5
Views: 948

find files

Hi Guys, Need some help from WildEdit pros:-) I need to find all files containing: <integer name="MaxChars">5</integer> the trick is I need to find files where the max char is 5 or greater. Does anyone know what I should put in instead of 5 so all files with <5 are not found? Thanks, Sebas...
by skwareks
Mon Mar 14, 2005 4:03 pm
Forum: WildEdit
Topic: FIND issue
Replies: 2
Views: 641

Yes, i only copy and paste. It always worked and everything looks correct... hmmmm?
by skwareks
Thu Mar 10, 2005 8:25 pm
Forum: WildEdit
Topic: FIND issue
Replies: 2
Views: 641

FIND issue

Hi, I ran into a problem. I am trying to replace the following code within 77 files. The code is the same in all files: var d = new Date(); Var date_string = util.printd("yyyy-mm-dd", d); var newFileName; newFileName = Page1.Find("FILENAME",1).Value + 'REV=' + date_string + '-' +...
by skwareks
Wed Mar 02, 2005 10:04 pm
Forum: WildEdit
Topic: WILDEDIT: WildCard search/replace
Replies: 5
Views: 1036

Yes, RE is check. And it is not working. What I meant about the numbers: Should I put [0-9.]+ for every number that is field name="FILEREV" presence="hidden" y="[0-9.]+mm" x="[0-9.]+mm" w="[0-9.]+mm" h="[0-9.]+mm"> very strange that it is n...
by skwareks
Wed Mar 02, 2005 8:16 pm
Forum: WildEdit
Topic: WILDEDIT: WildCard search/replace
Replies: 5
Views: 1036

hmmm it didn't work. WildEdit didn't find a match. When I put FIND What: <field name="FILEREV" presence="hidden" y="7.112mm" x="128.524mm" w="4.23mm" h="4.5mm"> it finds it. when I put: <field name="FILEREV" presence="hidden&...
by skwareks
Wed Mar 02, 2005 8:10 pm
Forum: WildEdit
Topic: WILDEDIT: WildCard search/replace
Replies: 5
Views: 1036

THANK YOU!

Many Thanks! :D
by skwareks
Wed Mar 02, 2005 6:41 pm
Forum: WildEdit
Topic: WILDEDIT: WildCard search/replace
Replies: 5
Views: 1036

WILDEDIT: WildCard search/replace

Hi, I have small problem. I need to delete the code below from 250 text files. <field name="FILEREV" presence="hidden" y="7.112mm" x="128.524mm" w="4.23mm" h="4.5mm"> The problem is that x and y are not constant. They are different in every...