hinekure.net が http://hspdev-wiki.net/ から自動クローリングした結果を表示しています。画像やリソースなどのリンクが切れています。予めご了承ください。
メモリノートパッド/notedel - HSP開発wiki
トップ    編集凍結 差分バックアップ添付複製名前変更リロード   新規一覧単語検索最終更新   最終更新のRSS

メモリノートパッド

notedelの使い方

単純な一行削除

Everything is expanded.Everything is shortened.
  1
  2
  3
  4
  5
  6
 
 
 
 
 
 
s = "abc\ndef\nghi\njkl"
mes s
notesel s
notedel 1
mes "---"
mes s

コメント相当文を削除して不要な処理を排除

Everything is expanded.Everything is shortened.
  1
  2
  3
  4
  5
  6
  7
  8
  9
 10
 11
 12
 13
 14
 15
 16
 17
 18
 19
 20
 21
 22
 23
 24
 25
 26
-
|
|
|
|
|
!
 
 
 
 
 
-
|
|
|
|
|
|
|
|
|
!
 
 
 
s = {"
見えるよ
見えるよ
;HSPと同じコメント
世界が見える
何が見えるの?
"}
notesel s
 *main
repeat notemax
    wait 100
    noteget sr, cnt
    if instr(sr,0,";")=0 {
        // コメント行を削除して2回目以降はコメント処理が不要になる
        notedel cnt
//*
        ; 間違い例
        continue
/*/
        ; 正しい例
        continue cnt
/*/
    }
    mes sr
loop
goto *main
トップ    編集凍結 差分バックアップ添付複製名前変更リロード   新規一覧単語検索最終更新   最終更新のRSS
Last-modified: 2008-06-21 (土) 15:14:46 (1996d)