こんにちは。
文字列からaを2個、bを2個含んだ行以外の行を全て削除したいのですが、うまくいきません。
どのようにすれば良いのでしょうか?
文字列
a0a0b0b0
a1a1b1b1
a2a2b2b2
a3a3b3
a4b4b4
a5b5
a6a6b6b6
プログラム
sdim data,400
notesel data
noteload "a"
data_l = noteinfo(0)
repeat data_l
noteget data_temp, cnt
split data_temp, "a"
if stat!=2{ notedel cnt}
split data_temp, "b"
if stat!=2{ notedel cnt}
loop
mes data
実行結果
a2a2b2b2
a4b4b4
a5b5
理想の実行結果
a0a0b0b0
a1a1b1b1
a2a2b2b2
a6a6b6b6
文字列中のaやbに付いている0,1,2,3,4,5..等の数字は実際はバラバラで、数十文字あります。