命令/関数辞書
- 概要
- abs
- acos
- asc
- asin
- assert
- atan
- atan2
- background
- beep
- bgmadd
- bgmplay
- bgmstate
- bgmstop
- bind$
- binding
- box
- call
- chr$
- circle
- cls
- connect$
- connected@
- connecting
- cos
- crash
- data
- datetime@
- def animation
- def background
- def pic
- direction
- disconnect
- distance
- do
- elemtype
- else
- else if
- end
- end function
- end if
- end procedure
- exit do
- exit for
- exit procedure
- fetch@
- for
- function
- hear$
- hide
- if
- include
- inkey$
- input
- left$
- len
- let
- line
- listen
- listening
- locate
- loop
- main
- mainvar
- mainvar$
- mainvar@
- max
- mid$
- min
- move
- moving
- next
- oval
- paint
- pause
- pi
- play
- point
- pow
- procedure
- pset
- put
- random
- read
- receive@
- render
- return
- right$
- roll
- round
- scr$
- send
- sgn
- show
- sin
- speak
- speed
- sprite
- sqr
- stay
- stop
- str$
- tan
- tap
- time
- touch
- truncate
- turn
- unbind
- val
- visible
- write
- xpos
- ypos
include
働き
文字列の中に部分文字列が含まれているかどうかを得ます。
文法
include(<s1>,<s2>)
- s1 - 確認対象の文字列
- s2 - 部分文字列
説明
ある文字列の中に、別の文字列が含まれているかどうかが、この関数の結果の値となります。もし文字列が含まれていたときは、この関数の結果は -1 になります。もし含まれていなかった場合は、この関数の結果は 0 になります。
サンプルプログラム
rem include
input "s1";s1$
input "s2";s2$
if include(s1$,s2$) then
print s1$;" includes ";s2$
else
print s1$;" doesn't include ";s2$
end if