Replace
Inhalt
[
Ausblenden
]Replace(string, string)
Ersetzt den Wert einer Zelle durch eine neue Zeichenfolge.
public int Replace(string placeHolder, string newValue)
Parameter | Typ | Beschreibung |
---|---|---|
placeHolder | String | Zellplatzhalter |
newValue | String | Zu ersetzender Zeichenfolgenwert |
Beispiele
[C#]
Workbook workbook = new Workbook();
......
workbook.Replace("AnOldValue", "NewValue");
[Visual Basic]
Dim workbook As Workbook = New Workbook()
........
orkbook.Replace("AnOldValue", "NewValue")
Siehe auch
- class Workbook
- namensraum Aspose.Cells
- Montage Aspose.Cells
Replace(string, int)
Ersetzt den Wert einer Zelle durch eine neue Ganzzahl.
public int Replace(string placeHolder, int newValue)
Parameter | Typ | Beschreibung |
---|---|---|
placeHolder | String | Zellplatzhalter |
newValue | Int32 | Zu ersetzender ganzzahliger Wert |
Beispiele
[C#]
Workbook workbook = new Workbook();
......
int newValue = 100;
workbook.Replace("AnOldValue", newValue);
[Visual Basic]
Dim workbook As Workbook = New Workbook()
........
im NewValue As Integer = 100
orkbook.Replace("AnOldValue", NewValue)
Siehe auch
- class Workbook
- namensraum Aspose.Cells
- Montage Aspose.Cells
Replace(string, double)
Ersetzt den Wert einer Zelle durch ein neues Double.
public int Replace(string placeHolder, double newValue)
Parameter | Typ | Beschreibung |
---|---|---|
placeHolder | String | Zellplatzhalter |
newValue | Double | Doppelter Wert zum Ersetzen |
Beispiele
[C#]
Workbook workbook = new Workbook();
......
double newValue = 100.0;
workbook.Replace("AnOldValue", newValue);
[Visual Basic]
Dim workbook As Workbook = New Workbook()
........
im NewValue As Double = 100.0
orkbook.Replace("AnOldValue", NewValue)
Siehe auch
- class Workbook
- namensraum Aspose.Cells
- Montage Aspose.Cells
Replace(string, string[], bool)
Ersetzt den Wert einer Zelle durch ein neues String-Array.
public int Replace(string placeHolder, string[] newValues, bool isVertical)
Parameter | Typ | Beschreibung |
---|---|---|
placeHolder | String | Zellplatzhalter |
newValues | String[] | Zu ersetzendes String-Array |
isVertical | Boolean | True – Vertikal, False – Horizontal |
Beispiele
[C#]
Workbook workbook = new Workbook();
......
string[] newValues = new string[]{"Tom", "Alice", "Jerry"};
workbook.Replace("AnOldValue", newValues, true);
[Visual Basic]
Dim workbook As Workbook = New Workbook()
.............
im NewValues() As String = New String() {"Tom", "Alice", "Jerry"}
orkbook.Replace("AnOldValue", NewValues, True)
Siehe auch
- class Workbook
- namensraum Aspose.Cells
- Montage Aspose.Cells
Replace(string, int[], bool)
Ersetzt die Werte der Zellen durch ein Integer-Array.
public int Replace(string placeHolder, int[] newValues, bool isVertical)
Parameter | Typ | Beschreibung |
---|---|---|
placeHolder | String | Zellplatzhalter |
newValues | Int32[] | Zu ersetzendes Integer-Array |
isVertical | Boolean | True – Vertikal, False – Horizontal |
Beispiele
[C#]
Workbook workbook = new Workbook();
......
int[] newValues = new int[]{1, 2, 3};
workbook.Replace("AnOldValue", newValues, true);
[Visual Basic]
Dim workbook As Workbook = New Workbook()
..........
im NewValues() As Integer = New Integer() {1, 2, 3}
orkbook.Replace("AnOldValue", NewValues, True)
Siehe auch
- class Workbook
- namensraum Aspose.Cells
- Montage Aspose.Cells
Replace(string, double[], bool)
Ersetzt die Werte der Zellen durch ein doppeltes Array.
public int Replace(string placeHolder, double[] newValues, bool isVertical)
Parameter | Typ | Beschreibung |
---|---|---|
placeHolder | String | Zellplatzhalter |
newValues | Double[] | Double-Array zu ersetzen |
isVertical | Boolean | True – Vertikal, False – Horizontal |
Beispiele
[C#]
Workbook workbook = new Workbook();
......
double[] newValues = new double[]{1.23, 2.56, 3.14159};
workbook.Replace("AnOldValue", newValues, true);
[Visual Basic]
Dim workbook As Workbook = New Workbook()
...........
Dim NewValues() As Double = New Double() {1.23, 2.56, 3.14159}
workbook.Replace("AnOldValue", NewValues, True)
Siehe auch
- class Workbook
- namensraum Aspose.Cells
- Montage Aspose.Cells
Replace(string, DataTable)
Ersetzt die Werte der Zellen durch Daten aus aDataTable .
public int Replace(string placeHolder, DataTable insertTable)
Parameter | Typ | Beschreibung |
---|---|---|
placeHolder | String | Zellplatzhalter |
insertTable | DataTable | DataTable zu ersetzen |
Beispiele
[C#]
Workbook workbook = new Workbook();
DataTable myDataTable = new DataTable("Customers");
// Fügt Daten zu myDataTable hinzu
........
workbook.Replace("AnOldValue", myDataTable);
[Visual Basic]
Dim workbook As Workbook = New Workbook()
Dim myDataTable As DataTable = New DataTable("Customers")
' Fügt Daten zu myDataTable hinzu
............
workbook.Replace("AnOldValue", myDataTable)
Siehe auch
- class Workbook
- namensraum Aspose.Cells
- Montage Aspose.Cells
Replace(bool, object)
Ersetzt die Werte der Zellen durch neue Daten.
public int Replace(bool boolValue, object newValue)
Parameter | Typ | Beschreibung |
---|---|---|
boolValue | Boolean | Der zu ersetzende boolesche Wert. |
newValue | Object | Neuer Wert. Kann ein String-, Integer-, Double- oder DateTime-Wert sein. |
Siehe auch
- class Workbook
- namensraum Aspose.Cells
- Montage Aspose.Cells
Replace(int, object)
Ersetzt die Werte der Zellen durch neue Daten.
public int Replace(int intValue, object newValue)
Parameter | Typ | Beschreibung |
---|---|---|
intValue | Int32 | Der zu ersetzende ganzzahlige Wert. |
newValue | Object | Neuer Wert. Kann ein String-, Integer-, Double- oder DateTime-Wert sein. |
Siehe auch
- class Workbook
- namensraum Aspose.Cells
- Montage Aspose.Cells
Replace(string, string, ReplaceOptions)
Ersetzt den Wert einer Zelle durch eine neue Zeichenfolge.
public int Replace(string placeHolder, string newValue, ReplaceOptions options)
Parameter | Typ | Beschreibung |
---|---|---|
placeHolder | String | Zellplatzhalter |
newValue | String | Zu ersetzender Zeichenfolgenwert |
options | ReplaceOptions | Die Ersetzungsoptionen |
Siehe auch
- class ReplaceOptions
- class Workbook
- namensraum Aspose.Cells
- Montage Aspose.Cells