hello
as i am not very familiar with regex, is it possible (whether its hard to do or not) to extract certain text inbetween symbols? for example:
<meta name="description" content="THIS IS THE TEXT I WANT TO EXTRACT" />
thank you :)
|
|
hello as i am not very familiar with regex, is it possible (whether its hard to do or not) to extract certain text inbetween symbols? for example:
thank you :)
|
||||||||
|
|
|
Since you give an xml example, just use an xml parser:
xml is not a simple text format, and
It also means that when the requirement changes, you have a simple tweak to make to the code, rather than trying to unpick a regex and put it back together again (which can be tricky if you are access a non-trivial node). Equally, xpath might be an option; so in your data the xpath:
is all you need. If you haven't got .NET 3.5:
|
|||
|
|
|
if the input is : text1/text2/text3
|
||
|
|
|
Sure you can do it with out Regex. Say you want to get the text between < and >...
|
||
|
|
|
|
Sure, you can identify the start and the end of your desired substring by string methods such as If so, then:
should more or less do what you want (apologies in again if there's an off-by-one or so in those hardcoded |
||||||
|