Holen Sie sich den HTML5-String von Cell
Contents
[
Hide
]
Holen Sie sich den HTML5-String von Cell
Mit Aspose.Cells for Python via Java können Sie die Zeichenfolge HTML aus der Zelle abrufen. Dies kann durch die Verwendung von erreicht werdengetHtmlString(boolean html5) Methode zur Verfügung gestellt von der API. Wenn Sie bestehenFALSCHAls Parameter wird es Ihnen Normal HTML zurückgeben, aber wenn Sie bestehenwahrAls Parameter wird eine HTML5-Zeichenfolge zurückgegeben.
Der folgende Beispielcode erstellt ein Arbeitsmappenobjekt und fügt Text in Zelle A1 des ersten Arbeitsblatts hinzu. Es ruft dann die Zeichenfolge Normal HTML und HTML5 aus Zelle A1 ab, indem es die verwendetgetHtmlString(boolean html5)-Methode und druckt sie.
Beispielcode
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Load the Sample Workbook | |
workbook = Workbook() | |
# Access first worksheet | |
worksheet = workbook.getWorksheets().get(0) | |
# Access cell A1 and put some text inside it. | |
cell = worksheet.getCells().get("A1") | |
cell.putValue("This is some text.") | |
# Get the Normal and Html5 strings. | |
strNormal = cell.getHtmlString(False) | |
strHtml5 = cell.getHtmlString(True) | |
# Print the Normal and Html5 strings | |
print("Normal:\r\n" + strNormal) | |
print("Html5:\r\n" + strHtml5) |
Das Folgende ist die Ausgabe, die durch das oben bereitgestellte Code-Snippet generiert wird.
Ausgabe
Normal:
<Font Style="FONT-FAMILY: Arial;FONT-SIZE: 10pt;COLOR: #000000;">This is some text.</Font>
Html5:
<div Style="FONT-FAMILY: Arial;FONT-SIZE: 10pt;COLOR: #000000;">This is some text.</div>