Search found 20 matches

by me_suzy
Sat Mar 11, 2017 8:07 am
Forum: TextCrawler - General
Topic: some diacritics and symbols doesn't work.
Replies: 0
Views: 15555

some diacritics and symbols doesn't work.

hello.

î is the same as i. If I try to search or replace, doesn't find î.
by me_suzy
Fri Mar 03, 2017 7:36 pm
Forum: TextCrawler - General
Topic: Regex: Problem Replace by: $1\L$2 (Capitalize words)
Replies: 4
Views: 18504

Regex: Problem Replace by: $1\L$2 (Capitalize words)

hello. I have this regex that doesn't work:

Lowercase letters within words (e.g. LowerCASe => Lowercase)
Find: (\w)([A-Z]+)
Replace: $1\L$2

The problem is at replace. $1\L$2 does't work. Ii replace all the words with \L
by me_suzy
Tue Feb 14, 2017 6:04 am
Forum: TextCrawler - General
Topic: Search and Replace Special html Characters with Space
Replies: 2
Views: 12261

Re: Search and Replace Special html Characters with Space

yes, hello. It works after I restart the program. Thank you very much.
by me_suzy
Sun Feb 12, 2017 3:31 pm
Forum: TextCrawler - General
Topic: Search and Replace Special html Characters with Space
Replies: 2
Views: 12261

Search and Replace Special html Characters with Space

hello. I need some help.

If I want to replace Special html Characters like   or … with one single space, it doesn't work. Where did I go wrong?

I also try a regex for both

Search:  |…
Replace by: (space)
by me_suzy
Tue Feb 07, 2017 3:08 pm
Forum: TextCrawler - General
Topic: Unrecognized escape sequence \K
Replies: 4
Views: 17297

Unrecognized escape sequence \K

hello, I use many times some regex with \K

Look at this code (tested in notepad++ and sublime_text)

(?-s)(?:.*\R){3}\K.*(?s)(.*) (This will select everything after line 3). Of course, I can change \R with \r . But what about \K ?

Look at this print screen. https://snag.gy/ugTFIB.jpg
by me_suzy
Mon Feb 06, 2017 8:44 am
Forum: TextCrawler - General
Topic: Unrecognized escape sequence \R
Replies: 1
Views: 10590

Unrecognized escape sequence \R

hello, many of my REGEX doesn't work here, especially when I am using \R

see this print screen https://snag.gy/TGt2Ez.jpg

In notepad++, sublime_text or GrepWin is working very good. Except TextCrawler.
by me_suzy
Thu Jul 14, 2016 12:32 pm
Forum: Regular Expressions Help
Topic: Regex - Select the first line on file
Replies: 1
Views: 13771

Regex - Select the first line on file

hi. I am wondering, how to select the first line on file ?

This will select the last line ^(.*)$\z

But the first line?
by me_suzy
Thu Jul 14, 2016 12:30 pm
Forum: Regular Expressions Help
Topic: Delete x lines, then stop
Replies: 5
Views: 27736

Re: Delete x lines, then stop

it is good this Autoit software?
by me_suzy
Thu Jul 14, 2016 11:48 am
Forum: Regular Expressions Help
Topic: Delete x lines, then stop
Replies: 5
Views: 27736

Re: Delete x lines, then stop

see https://forum.sublimetext.com/t/regex-m ... mpty/20850

This will delete the first 10 lines.

(\s*^(\h*\S.*)){10}
by me_suzy
Thu Jul 14, 2016 11:43 am
Forum: Regular Expressions Help
Topic: Regex that works only with GrepWin or Notepad++
Replies: 1
Views: 13987

Regex that works only with GrepWin or Notepad++

hello. I like very much TextCrawler, but when I do change on files, some regex doesn't work here. But works very well with GrepWin or Notepad++. Two examples that works with GrepWin or Notepad++, but doesn't work with TextCrawler. [\s\S]*.*WORD.*[\s\S] Select everything until WORD and the line with ...