Search found 9 matches

by clever_man
29 Feb 2016 05:36
Forum: User Help / Bug Reports
Topic: Doesn't work "Notification on Screen"
Replies: 2
Views: 7940

Doesn't work "Notification on Screen"

Hi. HTC One M9, Android 6.0 Automagic 1.30.0 (from Google Play Store). Action "Notification on Screen" doesn't work (message doesn't appear). Log: 29.02.2016 08:26:46.548 [Flow7] Starting to execute flow 'Flow7' with Context{global{},local{flow_name=Flow7,triggertime=1456723606545,trigger=Manual}} 2...
by clever_man
21 Sep 2015 14:05
Forum: User Help / Bug Reports
Topic: Can't using regexp
Replies: 10
Views: 19656

Re: Can't using regexp

Sory, my mistake, all working ;)
by clever_man
18 Sep 2015 07:10
Forum: User Help / Bug Reports
Topic: Can't using regexp
Replies: 10
Views: 19656

Re: Can't using regexp

The url can be found with getElement(groups, 1), when the input matches. Intersting situation - in matches() for regexp I'm using ' ' instead " " (because " using in line and the expression cause error with " "). After this, when I'm trying getElement() all script cause error in in the log after ge...
by clever_man
17 Sep 2015 19:09
Forum: User Help / Bug Reports
Topic: Can't using regexp
Replies: 10
Views: 19656

Re: Can't using regexp

Martin wrote:It seems that there's no line of text that starts with a. matches checks whether the whole input text matches the pattern, not just partially.
But ".*a.*" doesn't work too.
How I can find and using url for this text?
by clever_man
15 Sep 2015 14:36
Forum: User Help / Bug Reports
Topic: Can't using regexp
Replies: 10
Views: 19656

Re: Can't using regexp

Trying simple example. By Init Var Tex File read in resTest this text: <HTML><HEAD><TITLE> Web Authentication Redirect</TITLE><META http-equiv="Cache-control" content="no-cache"><META http-equiv="Pragma" content="no-cache"><META http-equiv="Expires" content="-1"><META http-equiv="refresh" content="1...
by clever_man
15 Sep 2015 13:21
Forum: User Help / Bug Reports
Topic: Can't using regexp
Replies: 10
Views: 19656

Re: Can't using regexp

But I wan't to find exact simbol '1' and "1.*" find the whole string "1234567".
Where I can test rexep? I trying on http://regexpal.com/ but it not situable for Automagic regexp...
Can I'm use regexp for text file?
by clever_man
15 Sep 2015 12:50
Forum: User Help / Bug Reports
Topic: Send a url to a web site
Replies: 2
Views: 7804

Re: Send a url to a web site

How you doing it?
by clever_man
15 Sep 2015 11:54
Forum: User Help / Bug Reports
Topic: Can't using regexp
Replies: 10
Views: 19656

Can't using regexp

Hi!
Can't using regexp.
Trying example code from documentation, but it doesn't work:

Code: Select all

result = matches("1234567", "\\d{3}.*");
log(result);
In logs result get false ((
Trying more simple:

Code: Select all

result = matches("1234567", "1");
log(result);
But result false too.
Whats wrong?