• onclose.. save file or it will be lost

    Locked
    1
    0 Votes
    1 Posts
    2k Views
    No one has replied
  • Functionlist for Rapid (ABB robots)

    Locked
    3
    0 Votes
    3 Posts
    6k Views
    Anders SandbergA

    Hi again.

    Fixed it myself. Just in case anyone else want to know how.
    I had this row added to associationtable:
    <association userDefinedLangName=“RAPID_ABB” id=“rapid_function”/>

    And my parsercode looks like this know when it works the way i want it to:
    <parser id=“rapid_function” displayName=“ABB Rapid” commentExpr=“!”>
    <function
    mainExpr=“^[\t ]((PROC|FUNC|TRAP)[\s][a-zA-Z]\w)”>
    </function>
    </parser>

    Maybe it can help someone else.

    //Anders S

  • GURU NEEDED - Stripping, reformatting, saving HTML...

    12
    0 Votes
    12 Posts
    7k Views
    Gabriele CripezziG

    “Just note that, in your last post, the link of the partial file is still wrong !”

    Yeah… there must be something wrong whit this forum script when parsing URLs. I tried to work on it but after 180 secs you can’t edit anymore so I couldn’t delete the links.

  • Trouble converting text to html

    2
    0 Votes
    2 Posts
    3k Views
    carlosthehyenaC

    Save as html works ok for me … depends on what you mean by “converting” - it won’t put tags in there, etc. all it does it rename your file from thisfile.txt to thisfile.html

  • Edit text file

    Locked
    1
    0 Votes
    1 Posts
    2k Views
    No one has replied
  • Broken files when search &replace

    Locked
    1
    0 Votes
    1 Posts
    1k Views
    No one has replied
  • Please Add Confirmation To 'Find All'

    Locked
    1
    0 Votes
    1 Posts
    2k Views
    No one has replied
  • Return auto indent to old settings

    5
    0 Votes
    5 Posts
    5k Views
    Dellord AnnihilusD
    return to old auto indent settings
  • Regex help: CSS comments as function names in FunctionList

    Locked
    3
    0 Votes
    3 Posts
    3k Views
    Lionel WongL

    Thanks guy038 for the solution and explanation. Cheers

  • Uploading Files....

    Locked
    1
    0 Votes
    1 Posts
    1k Views
    No one has replied
  • Entry point not found!

    Locked
    2
    0 Votes
    2 Posts
    3k Views
    dailD

    Did you even try to use Google?

  • Replace what's within X and X - list. Help needed.

    3
    0 Votes
    3 Posts
    2k Views
    guy038G

    Hello Jessica,

    I suppose that the values Emma and Dave are part of a list of first names, aren’t they ?

    Therefore, it would be interesting to extend this S/R regex to any number of first names, that are to be replaced !

    So, could you tell us how you detect the xxxx and yyyy strings, inside a block [object]....[/object] and could you provide an short example of your text, to illustrate the changes that are needed ? Thanks !

    Best Regards,

    guy038

  • Find/Replace shifts data to the right

    Locked
    7
    0 Votes
    7 Posts
    4k Views
    Jim DaileyJ

    That was it! Thanks, and welcome to the site.

  • SecurePad with download/install

    Locked
    1
    0 Votes
    1 Posts
    3k Views
    No one has replied
  • CTRL V messed up

    Locked
    1
    0 Votes
    1 Posts
    2k Views
    No one has replied
  • FunctionList fails to work with JS files, but works with embedded JS

    Locked
    1
    0 Votes
    1 Posts
    1k Views
    No one has replied
  • How to cut/paste a value multiple times AND increment it?

    Locked
    1
    0 Votes
    1 Posts
    2k Views
    No one has replied
  • Finding sentences open with quotation marks and not closed

    3
    0 Votes
    3 Posts
    12k Views
    guy038G

    Hi, Vittorio,

    Thinking again about this topic, I was able to improve, a bit, my previous search regex.

    With the regexes below, it’s possible to detect any ODD number of double quotation characters, ", in a sentence or, by default, in a complete line of text :-). Naturally, these new regexes seem rather tricky, but they do work !!

    The first regex, below, will select the last double quotation mark, NOT balanced in a sentence, or, by default, in a complete line :

    SEARCH (^|\.)(?:([^".\r\n]*)"(?2)")*(?2)\K"(?=(?2)(\.|$))

    NOTES :

    The first group 1, (^|\.), represents a beginning of line or the possible dot of the previous sentence.

    The group (?:([^".\r\n]*)"(?2)") represents any range, even null of well-balanced suites, of the form ....."..."..."......". Note that it’s a non-capturing group, due to the syntax ?:, at beginning of that group.

    Therefore, the second group 2 is ([^".\r\n]*), inside the non-capturing group, which represents any range, even null, of characters, different from a double quotation character, a dot character and an EOL character.

    The regex of this second group, is re-used, further, in the regex, as a called subroutine (?2) to that group 2. So, writing the syntax (?2) is exactly like writing the regex [^".\r\n]* !

    And, like in my previous post, the final regex, searched, is the double quotation, only, after the \K syntax and before the look-ahead (?=(?2)(\.|$)), which looks a range of characters, not ", nor ., till the end of the sentence or the line.

    The second regex will stop at the beginning of any line or sentence, which contains an ODD number of double quotation characters :

    SEARCH (^|\.)\K(?=(?:([^".\r\n]*)"(?2)")*(?2)"(?2)(\.|$))

    NOTES :

    This time, that second regex matches the empty string, located, between the a beginning of line ( or a dot of a previous sentence ) and a look-ahead, that tries to detect , FROM this current position, if there an odd number of double quotation marks, till the end of a sentence or a line !

    So you’re immediately aware that there’s an unbalanced double quotation character, further on the current line :-)

    To see the behaviour of these two regexes, just do a test, on the simple subject text below :

    Line 1 " Line 2 "" Line 3 """ Line 4 """" Line 5 """"" Line 6 """""". "Second" "sentence

    With the first regex, it should select the last " character of the lines 1, 3 and 5, only, and the ", just before the word sentence.

    With the second regex, the cursor should be located, at beginning of the lines 1, 3 and 5, only, and just after the dot , on line 6.

    To end with :

    You may, of course, change, in the regex, the double quotation mark by a single quotation mark, for instance. However, note that these regexes above, are NOT suitable, when the start and stop character are different, as for the couple ( and ) or even the French quotation marks and ! It’s an other story… )

    If you don’t care about the notion of sentences, you can simplify these regexes, changing the anchor (^|\.) into ^ and the anchor (\.|$) into $

    Cheers,

    guy038

  • Don't apply continue character in certain cases?

    Locked
    1
    0 Votes
    1 Posts
    1k Views
    No one has replied
  • 0 Votes
    4 Posts
    3k Views
    tomas-chrastinaT

    Hi,

    I assume problem is with quote character, as it’s special character while defining multi-part keyword. You need to escape it using \(backslash). Define your keyword group like:

    Level=\"ERROR\"

    Also here you can find UDL documentation -> UDL2.0.

    Best regards,
    Tomas.