Snippet stringFind

Darthfett

Aerospace/Cybersecurity Software Engineer
Reaction score
615
stringFind
Created by Darthfett

Description:
A small collection of functions used to iterate and search through a string, such as finding "run" in "Grunts stink"

Requirements:
N/A

The rest of the documentation can be found in the system code, below:

JASS:
library stringFind
/*
__________________________________________________________________________________

        stringFind library, created by Darthfett - version 1.1
        http://www.thehelper.net/forums/showthread.php?t=143591
        
                                Requirements
                                
-vJass compiler (such as JASSHelper)
    -If you remove the library and multi-line comment(s), you can make this JASS compatable.

                                Documentation
                                
-All functions are standalone.  Feel free to copy an individual function.

-Credit for this library is not necessary.  Feel free to use it in your map.
If you feel obligated to credit me, I won't object.  I only ask that you do 
not simply copy and paste the library as your own.

                                    API
                            
function ContainsString takes string s, string find, boolean checkCase returns boolean
    returns whether s contains find.  checkCase determines whether case is checked
    
function StartsWith takes string s, string find, boolean checkCase returns boolean
    returns whether s starts with find.  checkCase determines whether case is checked.
    
function EndsWith takes string s, string find, boolean checkCase returns boolean
    returns whether s ends with find.  checkCase determines whether case is checked.
    
function CountInString takes string s, string find, boolean allowOverlap, boolean checkCase returns integer
    returns the number of times 'find' can be found in 's'.  If allowOverlap
    is true, 'aa' can be found in 'aaa' 2 times.  Otherwise, only once.
    checkCase determines whether case is checked
    
function FindFirstOf takes string s, integer start, string find, boolean checkCase returns integer
    returns the index of the first instance of find in s starting from 'start'.
    If 'find' is not found, it will return the length of s.
    checkCase determines whether case is checked
    
function FindString takes string s, string find, boolean checkCase returns integer
    returns the index of the first instance of find in s, starting from 0.
    If 'find' is not found, it will return the length of s.
    checkCase determines whether case is checked
        
    Yes, this is a duplicate of FindFirstOf. It is included, to show an 
    example of how to use FindFirstOf (simply use 0), and for simplifying
    code/syntax.
    
function FindLastOf takes string s, integer end, string find, boolean checkCase returns integer
    returns the index of the last instance of find in s, going back from end.
    If 'find' is not found, it will return 0.
    checkCase determines whether case is checked
    
function FindStringLast takes string s, string find, boolean checkCase returns integer
    returns the index of the last instance of find in s.
    If 'find' is not found, it will return 0.
    checkCase determines whether case is checked

__________________________________________________________________________________
*/ 

function ContainsString takes string s, string find, boolean checkCase returns boolean
    local integer i = 0
    local integer findLen = StringLength(find)
    local integer sLen = StringLength(s)
    if not checkCase then
        set s = StringCase(s,false)
        set find = StringCase(find,false)
    endif
    loop
        exitwhen i+findLen > sLen
        if SubString(s,i,i+findLen) == find then
            return true
        endif
        set i = i + 1
    endloop
    return false
endfunction

function StartsWith takes string s, string find, boolean checkCase returns boolean
    if not checkCase then
        set s = StringCase(s,false)
        set find = StringCase(find,false)
    endif
    return SubString(s,0,StringLength(find)) == find
endfunction

function EndsWith takes string s, string find, boolean checkCase returns boolean
    local integer sLen = StringLength(s)
    if not checkCase then
        set s = StringCase(s,false)
        set find = StringCase(find,false)
    endif
    return SubString(s,sLen - StringLength(find),sLen) == find
endfunction   

function CountInString takes string s, string find, boolean allowOverlap, boolean checkCase returns integer
    local integer i = 0
    local integer findLen = StringLength(find)
    local integer sLen = StringLength(s)
    local integer count = 0
    if not checkCase then
        set s = StringCase(s,false)
        set find = StringCase(find,false)
    endif
    loop
        exitwhen i+findLen > sLen
        if SubString(s,i,i+findLen) == find then
            set count = count + 1
            if allowOverlap then
                set i = i + 1
            else
                set i = i + findLen
            endif
        else
            set i = i + 1
        endif
    endloop
    return count
endfunction

function FindFirstOf takes string s, integer start, string find, boolean checkCase returns integer
    local integer sLen = StringLength(s)
    local integer findLen = StringLength(find)
    if not checkCase then
        set s = StringCase(s,false)
        set find = StringCase(find,false)
    endif
    loop
        exitwhen start + findLen > sLen
        if SubString(s,start,start+findLen) == find then
            return start
        endif
        set start = start + 1
    endloop
    return sLen
endfunction

function FindString takes string s, string find, boolean checkCase returns integer
    local integer start = 0
    local integer sLen = StringLength(s)
    local integer findLen = StringLength(find)
    if not checkCase then
        set s = StringCase(s,false)
        set find = StringCase(find,false)
    endif
    loop
        exitwhen start + findLen > sLen
        if SubString(s,start,start+findLen) == find then
            return start
        endif
        set start = start + 1
    endloop
    return sLen
endfunction

function FindLastOf takes string s, integer end, string find, boolean checkCase returns integer
    local integer findLen = StringLength(find)
    if not checkCase then
        set s = StringCase(s,false)
        set find = StringCase(find,false)
    endif
    loop
        exitwhen end - findLen < 0
        if SubString(s,end-findLen,end) == find then
            return end-findLen
        endif
        set end = end - 1
    endloop
    return 0
endfunction

function FindStringLast takes string s, string find, boolean checkCase returns integer
    local integer end = StringLength(s)
    local integer findLen = StringLength(find)
    if not checkCase then
        set s = StringCase(s,false)
        set find = StringCase(find,false)
    endif
    loop
        exitwhen end - findLen < 0
        if SubString(s,end-findLen,end) == find then
            return end-findLen
        endif
        set end = end - 1
    endloop
    return 0
endfunction

endlibrary
 

Steel

Software Engineer
Reaction score
109
Something on all of these newly submitted snippets of yours you should work on is better variable names.

JASS:

function ContainsString takes string s, string find returns boolean


Is much better as

JASS:

function ContainsString takes string source, string tofind returns boolean


This indicates which string is which. String s doesn't tell the user much and they have to imply what the second string is based on the word.
 

Darthfett

Aerospace/Cybersecurity Software Engineer
Reaction score
615
Something on all of these newly submitted snippets of yours you should work on is better variable names.

JASS:

function ContainsString takes string s, string find returns boolean


Is much better as

JASS:

function ContainsString takes string source, string tofind returns boolean


This indicates which string is which. String s doesn't tell the user much and they have to imply what the second string is based on the word.

s and find should be pretty obvious. There's also documentation on them, and it's consistent throughout all the libraries. In other functions which have other arguments, I try to be more precise in naming these, but finding 'find' in 's' is common to many functions in this library.

Anyways, this is an update to 1.1, as I added the checkCase boolean to each function, along with the StartsWith and EndsWith functions.
 

Darthfett

Aerospace/Cybersecurity Software Engineer
Reaction score
615
Sorry but... What would this be useful for anyway?

For the most part, easily creating commands. For examples, see this, or my cmd systems:

JASS:
library cmdTest initializer Init uses stringFind

    globals
        boolean enabled = false
    endglobals

    private function Conditions takes nothing returns boolean
        return StartsWith(GetEventPlayerChatString(),"-test",false)
    endfunction

    private function Actions takes nothing returns nothing
        if enabled then
            set enabled = false
            call BJDebugMsg("Test mode disabled")
        else
            set enabled = true
            call BJDebugMsg("Test mode enabled")
        endif
    endfunction

    private function Init takes nothing returns nothing
        local trigger t = CreateTrigger()
        call TriggerRegisterPlayerChatEvent(t,Player(0))
        call TriggerAddCondition(t,Condition(function Conditions))
        call TriggerAddActions(t,function Actions)
    endfunction

endlibrary


This is an extremely simple way to have a "-test" command. Keep in mind, this is freehanded.

Using the FindString or ContainsString functions will allow you to use multiple commands in one line, and/or commands with arguments.
 
General chit-chat
Help Users
  • No one is chatting at the moment.
  • Ghan Ghan:
    Howdy
  • Ghan Ghan:
    Still lurking
    +3
  • The Helper The Helper:
    I am great and it is fantastic to see you my friend!
    +1
  • The Helper The Helper:
    If you are new to the site please check out the Recipe and Food Forum https://www.thehelper.net/forums/recipes-and-food.220/
  • Monovertex Monovertex:
    How come you're so into recipes lately? Never saw this much interest in this topic in the old days of TH.net
  • Monovertex Monovertex:
    Hmm, how do I change my signature?
  • tom_mai78101 tom_mai78101:
    Signatures can be edit in your account profile. As for the old stuffs, I'm thinking it's because Blizzard is now under Microsoft, and because of Microsoft Xbox going the way it is, it's dreadful.
  • The Helper The Helper:
    I am not big on the recipes I am just promoting them - I use the site as a practice place promoting stuff
    +2
  • Monovertex Monovertex:
    @tom_mai78101 I must be blind. If I go on my profile I don't see any area to edit the signature; If I go to account details (settings) I don't see any signature area either.
  • The Helper The Helper:
    You can get there if you click the bell icon (alerts) and choose preferences from the bottom, signature will be in the menu on the left there https://www.thehelper.net/account/preferences
  • The Helper The Helper:
    I think I need to split the Sci/Tech news forum into 2 one for Science and one for Tech but I am hating all the moving of posts I would have to do
  • The Helper The Helper:
    What is up Old Mountain Shadow?
  • The Helper The Helper:
    Happy Thursday!
    +1
  • Varine Varine:
    Crazy how much 3d printing has come in the last few years. Sad that it's not as easily modifiable though
  • Varine Varine:
    I bought an Ender 3 during the pandemic and tinkered with it all the time. Just bought a Sovol, not as easy. I'm trying to make it use a different nozzle because I have a fuck ton of Volcanos, and they use what is basically a modified volcano that is just a smidge longer, and almost every part on this thing needs to be redone to make it work
  • Varine Varine:
    Luckily I have a 3d printer for that, I guess. But it's ridiculous. The regular volcanos are 21mm, these Sovol versions are about 23.5mm
  • Varine Varine:
    So, 2.5mm longer. But the thing that measures the bed is about 1.5mm above the nozzle, so if I swap it with a volcano then I'm 1mm behind it. So cool, new bracket to swap that, but THEN the fan shroud to direct air at the part is ALSO going to be .5mm to low, and so I need to redo that, but by doing that it is a little bit off where it should be blowing and it's throwing it at the heating block instead of the part, and fuck man
  • Varine Varine:
    I didn't realize they designed this entire thing to NOT be modded. I would have just got a fucking Bambu if I knew that, the whole point was I could fuck with this. And no one else makes shit for Sovol so I have to go through them, and they have... interesting pricing models. So I have a new extruder altogether that I'm taking apart and going to just design a whole new one to use my nozzles. Dumb design.
  • Varine Varine:
    Can't just buy a new heatblock, you need to get a whole hotend - so block, heater cartridge, thermistor, heatbreak, and nozzle. And they put this fucking paste in there so I can't take the thermistor or cartridge out with any ease, that's 30 dollars. Or you can get the whole extrudor with the direct driver AND that heatblock for like 50, but you still can't get any of it to come apart
  • Varine Varine:
    Partsbuilt has individual parts I found but they're expensive. I think I can get bits swapped around and make this work with generic shit though
  • Ghan Ghan:
    Heard Houston got hit pretty bad by storms last night. Hope all is well with TH.
  • The Helper The Helper:
    Power back on finally - all is good here no damage
    +1
  • V-SNES V-SNES:
    Happy Friday!
    +1

      The Helper Discord

      Members online

      Affiliates

      Hive Workshop NUON Dome World Editor Tutorials

      Network Sponsors

      Apex Steel Pipe - Buys and sells Steel Pipe.
      Top