Logical signal suggestion

FlowCanvas Forums Support Logical signal suggestion

Viewing 5 posts - 1 through 5 (of 5 total)
  • Author
    Posts
  • #2217
    personuo
    Participant

    Hope those “≠”,”×”,”÷”,”≤”,”≥” can be searched by C# format,”!=”,”*”,”/”,”<=”,”>=”

    #2218
    personuo
    Participant

    Or those signals english name

    #2219
    Gavalakis
    Keymaster

    Hey 🙂

    While I have already created aliases for those operators in the latest version, there is a small bug that disallows actually searching by those aliases when there are 2 characters (* and / should work though).

    If you want to fix this now, please open up StringUtils.cs file and replace whole method named “SearchMatch” with this code:

    With the above change, you will be able to search with “!=”, “>=”, etc.

    Let me know if that indeed works for you.
    Thanks.

    Join us on Discord: https://discord.gg/97q2Rjh

    #2224
    guyboots_thunderbro
    Participant

    There’s a bug in this fix.

    var word = words;

    should be

    var word = words;

    OK, the forum is actually eating the text for some reason, so…

    You need to add an indexer accessor to words, passing in i as the position in the array.

    #2225
    Gavalakis
    Keymaster

    Hey,

    That is correct. The actual code does use the indexer, but as you found out, the code formatting removed it.
    Thanks for noticing. Now I will have to find a fix about this 🙂

    Join us on Discord: https://discord.gg/97q2Rjh

Viewing 5 posts - 1 through 5 (of 5 total)
  • You must be logged in to reply to this topic.