FirstClassトップページ


 ヘルプの目次
このヘルプについて このヘルプについて
 
エンドユーザ向けヘルプ エンドユーザ向けヘルプ
Client Help クライアントヘルプ
Web Help Webアクセスヘルプ
ScreenReader Help スクリーンリーダ
Form フォーム
Synchronization 同期
Definitions 用語
container コンテナ
 
管理者向けヘルプ 管理者向けヘルプ
Administration サーバの管理
Internet Services インターネットサービス
Customization Tools カスタマイズツール(英語)
Administering OTSW OTSWの管理
OTSW Custodian OTSW Custodian
Using FirstClass ED FirstClass ED(英語)
 
バナー:
 
 Replace
 
Purpose
Searches the source string for all occurrences of the search string. Each time the search string is found, it is replaced with the defined replacement string.
Syntax
Replace (SourceString, SearchString, ReplacementString)
The variables can all be any valid string expressions.
Example
Sub Main()
        Dim s As string
        s = "one, two, three, four, five"
        s = Replace(s, ",", ";")
        ' s is now assigned "one; two; three; four; five"
        Print s
End Sub

 

Copyright(C) 2002-2011 FC Management Co. All Rights Reserved