F...K!
I'm stupid =\
Search found 9 matches
- 29 Feb 2016 13:22
- Forum: User Help / Bug Reports
- Topic: Doesn't work "Notification on Screen"
- Replies: 2
- Views: 7940
- 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...
- 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
- 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...
- 17 Sep 2015 19:09
- Forum: User Help / Bug Reports
- Topic: Can't using regexp
- Replies: 10
- Views: 19656
Re: Can't using regexp
But ".*a.*" doesn't work too.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.
How I can find and using url for this text?
- 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...
- 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?
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?
- 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?
- 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:
In logs result get false ((
Trying more simple:
But result false too.
Whats wrong?
Can't using regexp.
Trying example code from documentation, but it doesn't work:
Code: Select all
result = matches("1234567", "\\d{3}.*");
log(result);
Trying more simple:
Code: Select all
result = matches("1234567", "1");
log(result);
Whats wrong?