Question about HTML tag C#
-
Hi all, How do i able to Read the html tag And after that, i can chage the html tag content? How do i read all the tag that contain with
How are you?
How can i replace the "How are you? to other type of text ? like "GFHSDFGR" (junk word)? Thank You
-
Hi all, How do i able to Read the html tag And after that, i can chage the html tag content? How do i read all the tag that contain with
How are you?
How can i replace the "How are you? to other type of text ? like "GFHSDFGR" (junk word)? Thank You
First step: try to teach yourself English. Second step: go to the store and buy a book about basic programming Third step: read the book, don't scan the text, but really read it Then you're ready to program. If you have an error, then go to google and try to search your error. If you tried for 15 minutes, then, but ONLY THEN come here and ask your questions. To anwser your question: try to use the String class for this. If you have your text stored in a String, for instance like this:
String s = "Hello World"
and you would like to read the tags, use a parser or make your own parser. To replace "How are you?" to "GFHSDFGR", you should try:"Hello How are you?".replace("How are you?", "GFHSDFGR");
, this will give as output: Hello GRHSDFGR. Good luck. -
Hi all, How do i able to Read the html tag And after that, i can chage the html tag content? How do i read all the tag that contain with
How are you?
How can i replace the "How are you? to other type of text ? like "GFHSDFGR" (junk word)? Thank You
Click the "Ignore HTML" checkbox, to stop your message going nuts
Help me! I'm turning into a grapefruit! Buzzwords!
-
Hi all, How do i able to Read the html tag And after that, i can chage the html tag content? How do i read all the tag that contain with
How are you?
How can i replace the "How are you? to other type of text ? like "GFHSDFGR" (junk word)? Thank You