次の方法で共有


EditPoint2.ReplacePattern メソッド (TextPoint, String, String, Int32, TextRanges%)

指定したテキスト範囲で特定のパターンを検索し、指定したテキストで置換します。

名前空間:  EnvDTE80
アセンブリ:  EnvDTE80 (EnvDTE80.dll 内)

構文

'宣言
Function ReplacePattern ( _
    Point As TextPoint, _
    Pattern As String, _
    Replace As String, _
    vsFindOptionsValue As Integer, _
    <OutAttribute> ByRef Tags As TextRanges _
) As Boolean
bool ReplacePattern(
    TextPoint Point,
    string Pattern,
    string Replace,
    int vsFindOptionsValue,
    out TextRanges Tags
)
bool ReplacePattern(
    [InAttribute] TextPoint^ Point, 
    [InAttribute] String^ Pattern, 
    [InAttribute] String^ Replace, 
    [InAttribute] int vsFindOptionsValue, 
    [InAttribute] [OutAttribute] TextRanges^% Tags
)
abstract ReplacePattern : 
        Point:TextPoint * 
        Pattern:string * 
        Replace:string * 
        vsFindOptionsValue:int * 
        Tags:TextRanges byref -> bool 
function ReplacePattern(
    Point : TextPoint, 
    Pattern : String, 
    Replace : String, 
    vsFindOptionsValue : int, 
    Tags : TextRanges
) : boolean

パラメーター

  • Point
    型 : EnvDTE.TextPoint
    必ず指定します。指定したテキスト範囲の終点。エディット ポイントと Point は置換の範囲を示します。
  • Pattern
    型 : System.String
    必ず指定します。検索する文字列。
  • Replace
    型 : System.String
    必ず指定します。 Pattern を置換する文字列。
  • Tags
    型 : EnvDTE.TextRanges%
    省略可能です。一致したパターンがタグ付き部分式を含む正規表現の場合、Tags には、TextRange オブジェクト (各タグ付き部分式に 1 つ) のコレクションが含まれます。

戻り値

型 : System.Boolean
置換が正常に行われる場合は true。それ以外の場合は false。

解説

ReplacePattern によるテキスト検索は、FindPattern と似ています。ただし、エディット ポイントと Point 引数の間にあるテキストだけを検索するという点が異なります。ドキュメント全体で検索および置換を行うには、TextDocument.ReplacePattern を使用します。Tags コレクションは、最後に一致したパターンの情報だけを返します。

Sub ReplacePatternExample()
   Dim objTextDoc As TextDocument
   Dim objMovePt As EditPoint
   Dim objEditPt As EditPoint, iCtr As Integer

   ' Create a new text file.
   DTE.ItemOperations.NewFile("General\Text File")

   ' Get a handle to the new document and create an EditPoint.
   objTextDoc = DTE.ActiveDocument.Object("TextDocument")
   objMovePt = objTextDoc.EndPoint.CreateEditPoint
   objEditPt = objTextDoc.StartPoint.CreateEditPoint

   ' Insert ten lines of text.
   For iCtr = 1 To 10
      objEditPt.Insert("This is a test." & Chr(13))
   Next iCtr
   objEditPt.StartOfDocument()
   objMovePt.EndOfDocument()
   ' Replace all occurrences of "test" with "thing."
    objEditPt.ReplacePattern(objMovePt, "test", "thing", vsFindOptions.vsFindOptionsFromStart)
End Sub

.NET Framework セキュリティ

  • 直前の呼び出し元に対する完全な信頼。このメンバーは、部分的に信頼されているコードから使用することはできません。詳細については、「部分信頼コードからのライブラリの使用」を参照してください。

参照

関連項目

EditPoint2 インターフェイス

ReplacePattern オーバーロード

EnvDTE80 名前空間