| 4D v13.4Delete string | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|  | 
    4D v13.4
 Delete string 
         | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| Delete string ( source ; where ; numChars ) -> 戻り値 | ||||||||
| 引数 | 型 | 説明 | ||||||
| source | 文字 |   | 文字を削除する文字列 | |||||
| where | 倍長整数 |   | 削除開始位置 | |||||
| numChars | 倍長整数 |   | 削除する文字数 | |||||
| 戻り値 | 文字 |   | 結果の文字列 | |||||
Delete stringは、whereからnumChars分の文字をsourceから削除した文字列を返します。
Delete stringは、以下のような場合にsourceと同じ文字列を返します。
Delete stringの使用例を次に示します。結果を変数vtResultに代入します。
 vtResult:=Delete string("Lamborghini";6;6) ` vtResultは"Lambo"
 vtResult:=Delete string("Indentation";6;2) ` vtResultは"Indention"
 vtResult:=Delete string(vtOtherVar;3;32000) ` vtResultはvtOtherVarの最初の2文字のみ
	プロダクト: 4D
	テーマ: 文字列
	番号: 
        232
        
        
        
	
	初出: < 4D v6
Change string
Insert string
Replace string