VIXEP - Make it, Share it, Play it
Welcome to VIXEP CITY :vixep:!

Silahkan Log In terlebih dahulu jika anda sudah memiliki VIXEP Account, supaya anda dapat melakukan posting dan bergabung dengan VIXEP Citizen yang lainnya :D

Jika anda belum memiliki VIXEP Account, silahkan Register terlebih dahulu untuk memulai kehidupan baru di VIXEP CITY :D

- VIXEP Staff -
VIXEP - Make it, Share it, Play it
Welcome to VIXEP CITY :vixep:!

Silahkan Log In terlebih dahulu jika anda sudah memiliki VIXEP Account, supaya anda dapat melakukan posting dan bergabung dengan VIXEP Citizen yang lainnya :D

Jika anda belum memiliki VIXEP Account, silahkan Register terlebih dahulu untuk memulai kehidupan baru di VIXEP CITY :D

- VIXEP Staff -
VIXEP - Make it, Share it, Play it
Would you like to react to this message? Create an account in a few clicks or log in to continue.


VIXEP - Make it, Share it, Play it
 
HomePortalUUDLatest imagesSearchRegisterLog in

Share | 
 

 [GM] Substring Counter

View previous topic View next topic Go down 
AuthorMessage
Yuyuko Saigyouji
Alumni
Yuyuko Saigyouji

Lokasi : Bandung
Status : OSU!
Jumlah Post : 694
Voucher Voucher : 8226
Reppo : 10
Join Date : 2010-08-21

[GM] Substring Counter Empty
PostSubject: [GM] Substring Counter   [GM] Substring Counter EmptyTue 24 Aug 2010, 09:06

Game Maker
Substring Counter
Compability Game Maker 6 Lite or higher
by: Irfan Gunawan

script ini di-implementasikan untuk mencari substring diantara string-string yang ada dalam suatu {variable}

Code:
var arg;
arg[0] = argument0 // substring to find
arg[1] = argument1 // find on which string

var text, pre_text, count;
text=""
pre_text=""
count=0

if arg[0] == "" then return 0

while(text!=pre_text){
  pre_text=text
  text=string_replace(arg[1],arg[0],"")
  count+=(text!=pre_text)
}

return count

silahkan copas ke gm..
arigatou~ :sakaki:
Back to top Go down

 

[GM] Substring Counter

View previous topic View next topic Back to top 
Page 1 of 1

Permissions in this forum:You cannot reply to topics in this forum
VIXEP - Make it, Share it, Play it :: Bengkel :: Script Lainnya-