replace yöntemi
İçindekiler
[
Saklamak
]replace(place_holder, new_value)
Bir hücrenin değerini yeni bir dizeyle değiştirir.
def replace(self, place_holder, new_value):
...
Parametre | Tip | Tanım |
---|---|---|
place_holder | str | Cell yer tutucu |
new_value | str | Değiştirilecek dize değeri |
Örnek
from aspose.cells import Workbook
workbook = Workbook()
# ......
workbook.replace("AnOldValue", "NewValue")
replace(place_holder, new_value)
Bir hücrenin değerini yeni bir tamsayı ile değiştirir.
def replace(self, place_holder, new_value):
...
Parametre | Tip | Tanım |
---|---|---|
place_holder | str | Cell yer tutucu |
new_value | int | Değiştirilecek tamsayı değeri |
Örnek
from aspose.cells import Workbook
workbook = Workbook()
# ......
newValue = 100
workbook.replace("AnOldValue", newValue)
replace(place_holder, new_value)
Bir hücrenin değerini yeni bir çift ile değiştirir.
def replace(self, place_holder, new_value):
...
Parametre | Tip | Tanım |
---|---|---|
place_holder | str | Cell yer tutucu |
new_value | float | Değiştirilecek çift değer |
Örnek
from aspose.cells import Workbook
workbook = Workbook()
# ......
newValue = 100.0
workbook.replace("AnOldValue", newValue)
replace(bool_value, new_value)
Hücrelerin değerlerini yeni verilerle değiştirir.
def replace(self, bool_value, new_value):
...
Parametre | Tip | Tanım |
---|---|---|
bool_value | bool | Değiştirilecek boole değeri. |
new_value | any | Yeni değer. Dize, tamsayı, çift veya DateTime değeri olabilir. |
replace(int_value, new_value)
Hücrelerin değerlerini yeni verilerle değiştirir.
def replace(self, int_value, new_value):
...
Parametre | Tip | Tanım |
---|---|---|
int_value | int | Değiştirilecek tamsayı değeri. |
new_value | any | Yeni değer. Dize, tamsayı, çift veya DateTime değeri olabilir. |
replace(place_holder, new_values, is_vertical)
Bir hücrenin değerini yeni bir dize dizisiyle değiştirir.
def replace(self, place_holder, new_values, is_vertical):
...
Parametre | Tip | Tanım |
---|---|---|
place_holder | str | Cell yer tutucu |
new_values | list | Değiştirilecek dize dizisi |
is_vertical | bool | Doğru - Dikey, Yanlış - Yatay |
Örnek
from aspose.cells import Workbook
workbook = Workbook()
# ......
newValues = ["Tom", "Alice", "Jerry"]
workbook.replace("AnOldValue", newValues, True)
replace(place_holder, new_values, is_vertical)
Hücrelerin değerlerini bir tamsayı dizisiyle değiştirir.
def replace(self, place_holder, new_values, is_vertical):
...
Parametre | Tip | Tanım |
---|---|---|
place_holder | str | Cell yer tutucu |
new_values | list | Değiştirilecek tamsayı dizisi |
is_vertical | bool | Doğru - Dikey, Yanlış - Yatay |
Örnek
from aspose.cells import Workbook
workbook = Workbook()
# ......
newValues = [1, 2, 3]
workbook.replace("AnOldValue", newValues, True)
replace(place_holder, new_values, is_vertical)
Hücrelerin değerlerini çift dizi ile değiştirir.
def replace(self, place_holder, new_values, is_vertical):
...
Parametre | Tip | Tanım |
---|---|---|
place_holder | str | Cell yer tutucu |
new_values | list | Değiştirilecek çift dizi |
is_vertical | bool | Doğru - Dikey, Yanlış - Yatay |
Örnek
from aspose.cells import Workbook
workbook = Workbook()
# ......
newValues = [1.23, 2.56, 3.14159]
workbook.replace("AnOldValue", newValues, True)
replace(place_holder, new_value, options)
Bir hücrenin değerini yeni bir dizeyle değiştirir.
def replace(self, place_holder, new_value, options):
...
Parametre | Tip | Tanım |
---|---|---|
place_holder | str | Cell yer tutucu |
new_value | str | Değiştirilecek dize değeri |
options | ReplaceOptions | değiştirme seçenekleri |
Ayrıca bakınız
- modül aspose.cells
- sınıf Workbook