Search found 3 matches

by BoldText
Mon Mar 19, 2018 4:57 pm
Forum: TextCrawler
Topic: Question for Regex
Replies: 5
Views: 17290

Re: Question for Regex

Thanks for your help! That was it! :)
by BoldText
Fri Mar 16, 2018 8:08 pm
Forum: TextCrawler
Topic: Question for Regex
Replies: 5
Views: 17290

Re: Question for Regex

Yes, I checked "Multi line anchors" option. You can use the text from my link for testing regex. ;)

Code: Select all

text array
text
text array
	(
text array(
	(
text array
(
text
text array
   (	
text
text (array
		(
array
text array
		(
text
by BoldText
Fri Mar 16, 2018 3:07 pm
Forum: TextCrawler
Topic: Question for Regex
Replies: 5
Views: 17290

Question for Regex

Hello,

I want use this multi-line regex

array$[\t\n\r\s]*?\([\t\s]*?$

for searching array without "(" behind it, but next new line. The regex working fine in php or Online Regex tests. https://regex101.com/r/YyHZaU/1

In TextCrawler-Tool "Test Regular Expression" and "Find" its not working. I ...