The following warnings occurred:
Warning [2] Use of undefined constant SAPI_NAME - assumed 'SAPI_NAME' (this will throw an Error in a future version of PHP) - Line: 3388 - File: inc/functions.php PHP 7.4.33-nmm7 (Linux)
File Line Function
/inc/functions.php 3388 errorHandler->error
/showthread.php 116 build_archive_link
Warning [2] Use of undefined constant IN_ARCHIVE - assumed 'IN_ARCHIVE' (this will throw an Error in a future version of PHP) - Line: 3331 - File: inc/functions.php PHP 7.4.33-nmm7 (Linux)
File Line Function
/inc/functions.php 3331 errorHandler->error
/inc/functions.php 3324 build_forum_breadcrumb
/showthread.php 195 build_forum_breadcrumb
Warning [2] Use of undefined constant IN_ARCHIVE - assumed 'IN_ARCHIVE' (this will throw an Error in a future version of PHP) - Line: 3331 - File: inc/functions.php PHP 7.4.33-nmm7 (Linux)
File Line Function
/inc/functions.php 3331 errorHandler->error
/showthread.php 195 build_forum_breadcrumb






Post Reply 
 
Thread Rating:
  • 1 Votes - 5 Average
  • 1
  • 2
  • 3
  • 4
  • 5
STRREPLACE
Author Message
Crusader
Master
**

Posts: 254
Likes Given: 7
Likes Received: 19 in 12 posts
Joined: Apr 2012
Reputation: 6

Erehwon New Hera

Post: #1
STRREPLACE
oh no another one!
yes, that's mine. takes into account commas too....but ofc might be improved, feel free to post improvements below =)

Code:
[FUNCTION STRREPLACE]
// OldWord, NewWord, String
LOCAL.OLDWORD=<ARGV[0]>
LOCAL.NEWORD=<ARGV[1]>
LOCAL.EATFIRST=<STREAT <ARGS>>
LOCAL.STRCLEAN=<STREAT <LOCAL.EATFIRST>>
LOCAL.DONE=1
WHILE (STRCMPI(<LOCAL.STRCLEAN>,0)!=0)
    LOCAL.COMADD=
    LOCAL.COMACHECK=<EVAL STRLEN(<LOCAL.STRCLEAN>)>
    LOCAL.START=<STRARG <LOCAL.STRCLEAN>>
    LOCAL.STOP=<STREAT <LOCAL.STRCLEAN>>
    LOCAL.COMACHECK2=<EVAL STRLEN(<LOCAL.START>) + STRLEN(<LOCAL.STOP>)>
        IF (STRCMP(<LOCAL.START>,<LOCAL.OLDWORD>))==0
            LOCAL.START =<LOCAL.NEWORD>
        ENDIF
        IF (STRCMPI(<LOCAL.STOP>,0)==0)
            LOCAL.STRCLEAN=
        ELSE
            LOCAL.STRCLEAN=<LOCAL.STOP>
        ENDIF
        IF <DLOCAL.COMACHECK> > <EVAL <LOCAL.COMACHECK2>+1>
            LOCAL.COMADD=1
        ENDIF
        IF (<DLOCAL.DONE> == 1)
            IF <DLOCAL.COMADD>==1
                LOCAL.DONE ="<LOCAL.START>,"
            ELSE
                LOCAL.DONE ="<LOCAL.START>"
            ENDIF
        ELSE
            IF <DLOCAL.COMADD>==1
                LOCAL.DONE .= " <LOCAL.START>,"
            ELSE
                LOCAL.DONE .= " <LOCAL.START>"
            ENDIF
        ENDIF
ENDWHILE
RETURN <LOCAL.DONE>


edit oh right, commas, thx mordy.
(This post was last modified: 09-05-2014 07:49 AM by Crusader.)
09-04-2014 06:07 PM
Find all posts by this user Like Post Quote this message in a reply
[+] 2 users Like Crusader's post
Mordaunt
Super Moderator
****

Posts: 1,237
Likes Given: 26
Likes Received: 55 in 43 posts
Joined: Mar 2012
Reputation: 35



Post: #2
RE: STRREPLACE
comas huh... interesting.. not sure how one would type while in a coma but still.....


Oh I'm sorry did you mean commas? Big Grin

[Image: 2nis46r.jpg]
09-05-2014 04:28 AM
Visit this user's website Find all posts by this user Like Post Quote this message in a reply
[+] 2 users Like Mordaunt's post
Extreme
Grandmaster Poster
***

Posts: 1,141
Likes Given: 217
Likes Received: 90 in 77 posts
Joined: May 2012
Reputation: 20

SphereCommunity

Post: #3
RE: STRREPLACE
Hahhahahahha don't fuck mordaunt..

STEPS BEFORE CREATE A THREAD
- Check the revisions log;
- Use the search button and use the keywords of your problem;
- Check the WIKI;
- Create a thread.
09-05-2014 06:08 AM
Find all posts by this user Like Post Quote this message in a reply
[+] 1 user Likes Extreme's post
Extreme
Grandmaster Poster
***

Posts: 1,141
Likes Given: 217
Likes Received: 90 in 77 posts
Joined: May 2012
Reputation: 20

SphereCommunity

Post: #4
RE: STRREPLACE
Here is my STR custom functions.

STRSTR WORD,PHRASE
RETURN the position of the first WORD found on PHRASE, -1 if don't find.
PHP Code:
[FUNCTION STRSTR]
LOCAL.WORD <STRTOLOWER <ARGV[0]>>
ARGS <STRTOLOWER <STREAT <ARGS>>>
IF !
STRMATCH(*<LOCAL.WORD>*,*<ARGS>*)
 RETURN -
1
ELSE
 
LOCAL.P 0
 
WHILE <dLOCAL.CNT> != <EVAL STRLEN(<LOCAL.WORD>)>
  
LOCAL.POS <STRPOS <dLOCAL.P> <STRSUB 0 1 <LOCAL.WORD>> <ARGS>>
  
LOCAL.CNT 0
  
FOR C 0 <EVAL STRLEN(<LOCAL.WORD>)-1>
   IF 
STRMATCH(*<STRSUB <EVAL <dLOCAL.POS>+<dLOCAL.C>> <ARGS>>*,*<STRSUB <dLOCAL.C<LOCAL.WORD>>*)
    
LOCAL.CNT ++
   ELSE
    
LOCAL.++
    BREAK
   ENDIF
  ENDFOR
 ENDWHILE
 RETURN <
dLOCAL.POS>
ENDIF 

STRREPLACE OLDWORD,NEWWORD,PHRASE
RETURN PHRASE with ALL found OLDWORD's changed to NEWWORLD's
PHP Code:
[FUNCTION STRREPLACE]
LOCAL.OLDWORD <ARGV[0]>
LOCAL.WORD <ARGV[1]>
ARGS <STREAT <STREAT <ARGS>>>
WHILE 
STRMATCH(*<STRTOLOWER <LOCAL.OLDWORD>>*,*<STRTOLOWER <ARGS>>*)
 
LOCAL.<STRSTR <LOCAL.OLDWORD>,<ARGS>>
 IF <
dLOCAL.P>
  
ARGS <STRSUB 0 <EVAL <dLOCAL.P>> <ARGS>><LOCAL.WORD><STRSUB <EVAL <dLOCAL.P>+STRLEN(<LOCAL.OLDWORD>)> <EVAL STRLEN(<ARGS>)> <ARGS>>
 ELSE
  
ARGS <LOCAL.WORD><STRSUB <EVAL <dLOCAL.P>+STRLEN(<LOCAL.OLDWORD>)> <EVAL STRLEN(<ARGS>)> <ARGS>>
 ENDIF
ENDWHILE
RETURN <
ARGS

STRREPLACEONCE OLDWORD,NEWWORD,PHRASE
RETURN PHRASE with only one OLDWORD changed to NEWWORD
PHP Code:
[FUNCTION STRREPLACEONCE]
LOCAL.OLDWORD <ARGV[0]>
LOCAL.WORD <ARGV[1]>
ARGS <STREAT <STREAT <ARGS>>>
LOCAL.<STRSTR <LOCAL.OLDWORD>,<ARGS>>
IF <
dLOCAL.P>
 
ARGS <STRSUB 0 <EVAL <dLOCAL.P>> <ARGS>><LOCAL.WORD><STRSUB <EVAL <dLOCAL.P>+STRLEN(<LOCAL.OLDWORD>)> <EVAL STRLEN(<ARGS>)> <ARGS>>
ELSE
 
ARGS <LOCAL.WORD><STRSUB <EVAL <dLOCAL.P>+STRLEN(<LOCAL.OLDWORD>)> <EVAL STRLEN(<ARGS>)> <ARGS>>
ENDIF
RETURN <
ARGS

PS: both STRREPLACE and STRREPLACEONCE needs the function STRSTR!

STEPS BEFORE CREATE A THREAD
- Check the revisions log;
- Use the search button and use the keywords of your problem;
- Check the WIKI;
- Create a thread.
09-05-2014 12:11 PM
Find all posts by this user Like Post Quote this message in a reply
[+] 1 user Likes Extreme's post
Extreme
Grandmaster Poster
***

Posts: 1,141
Likes Given: 217
Likes Received: 90 in 77 posts
Joined: May 2012
Reputation: 20

SphereCommunity

Post: #5
RE: STRREPLACE
Well...
[FUNCTION ISPAIR]
RETURN <QVAL <EVAL <ARGS>%2>?0:1>

STEPS BEFORE CREATE A THREAD
- Check the revisions log;
- Use the search button and use the keywords of your problem;
- Check the WIKI;
- Create a thread.
09-06-2014 05:35 AM
Find all posts by this user Like Post Quote this message in a reply
kn4tseb
Master
**

Posts: 392
Likes Given: 45
Likes Received: 10 in 10 posts
Joined: May 2014
Reputation: 0



Post: #6
RE: STRREPLACE
never tried the qval operarator... ;]
nice btw, ty

whats the "%" for?
is it too long to explain?
(This post was last modified: 09-06-2014 08:55 AM by kn4tseb.)
09-06-2014 05:47 AM
Find all posts by this user Like Post Quote this message in a reply
XuN
Sphere Developer
*****

Posts: 852
Likes Given: 102
Likes Received: 156 in 119 posts
Joined: Jul 2013
Reputation: 30



Post: #7
RE: STRREPLACE
09-06-2014 11:05 PM
Find all posts by this user Like Post Quote this message in a reply
[+] 1 user Likes XuN's post
kn4tseb
Master
**

Posts: 392
Likes Given: 45
Likes Received: 10 in 10 posts
Joined: May 2014
Reputation: 0



Post: #8
RE: STRREPLACE
ohhh .. understood, thanks XuN
(This post was last modified: 09-07-2014 03:06 AM by kn4tseb.)
09-07-2014 03:03 AM
Find all posts by this user Like Post Quote this message in a reply
Post Reply 


Forum Jump:


User(s) browsing this thread: 1 Guest(s)