Run Code
|
API
|
Code Wall
|
Misc
|
Feedback
|
Login
|
Theme
|
Privacy
|
Patreon
Find the value of a specific span in an html script
//Rextester.Program.Main is the entry point for your code. Don't change it. //Compiler version 4.0.30319.17929 for Microsoft (R) .NET Framework 4.5 using System; using System.Collections.Generic; using System.Linq; using System.Text.RegularExpressions; namespace Rextester { public class Program { public static void Main(string[] args) { //Your code goes here Regex newRegex = new Regex(@"<span class=""p-merchant"">(?<MerchantName>.*)</span>", RegexOptions.IgnoreCase | RegexOptions.Compiled | RegexOptions.CultureInvariant | RegexOptions.ExplicitCapture); string test = @"<span class=""p-merchant"">Uber Technologies, Inc.</span>"; if(newRegex.Match(test).Success) Console.WriteLine(newRegex.Match(test).Groups["MerchantName"]); else Console.WriteLine("No"); } } }
run
|
edit
|
history
|
help
0
11
Putting In-Between Symbols
Linq
test examen
Random Number Generation
Pizzas&Tuples&Golden-Medal
Irfan_Problem
Non Generic object based class
Unsorted Parallel Arrays finding min & max values.
OOP vs DOD