Überprüfen der Lösung zum Extrahieren, Ersetzen und Entfernen von Daten aus einer Eingabezeichenfolge
Der folgende Code ist eine mögliche Lösung für die Herausforderung aus der vorherigen Einheit.
const string input = "<div><h2>Widgets ™</h2><span>5000</span></div>";
string quantity = "";
string output = "";
// Your work here
// Extract the "quantity"
const string openSpan = "<span>";
const string closeSpan = "</span>";
int quantityStart = input.IndexOf(openSpan) + openSpan.Length; // + length of <span> so index at end of <span> tag
int quantityEnd= input.IndexOf(closeSpan);
int quantityLength = quantityEnd - quantityStart;
quantity = input.Substring(quantityStart, quantityLength);
quantity = $"Quantity: {quantity}";
// Set output to input, replacing the trademark symbol with the registered trademark symbol
const string tradeSymbol = "™";
const string regSymbol = "®";
output = input.Replace(tradeSymbol, regSymbol);
// Remove the opening <div> tag
const string openDiv = "<div>";
int divStart = output.IndexOf(openDiv);
output = output.Remove(divStart, openDiv.Length);
// Remove the closing </div> tag and add "Output:" to the beginning
const string closeDiv = "</div>";
int divCloseStart = output.IndexOf(closeDiv);
output = "Output: " + output.Remove(divCloseStart, closeDiv.Length);
Console.WriteLine(quantity);
Console.WriteLine(output);
Dieser Code ist lediglich "eine mögliche Lösung". Solange Ihr Code die folgende Ausgabe erzeugt, waren Sie erfolgreich.
Quantity: 5000
Output: <h2>Widgets ®</h2><span>5000</span>
Wenn erfolgreich, herzlichen Glückwunsch! Fahren Sie mit dem Wissenscheck in der nächsten Einheit fort.
Von Bedeutung
Wenn Sie Probleme beim Abschließen dieser Herausforderung hatten, sollten Sie vielleicht die vorherigen Einheiten überprüfen, bevor Sie fortfahren.