Welcome to collectivesolver - Programming & Software Q&A with code examples. A website with trusted programming answers. All programs are tested and work.

Contact: aviboots(AT)netvision.net.il

Buy a domain name - Register cheap domain names from $0.99 - Namecheap

Scalable Hosting That Grows With You

Secure & Reliable Web Hosting, Free Domain, Free SSL, 1-Click WordPress Install, Expert 24/7 Support

Semrush - keyword research tool

Boost your online presence with premium web hosting and servers

Disclosure: My content contains affiliate links.

39,895 questions

51,826 answers

573 users

How to extract text from between specific HTML tag using regular expression in Go

1 Answer

0 votes
package main

import (
	"fmt"
	"regexp"
)

func main() {
	s := `<html><body>
		  <textarea type="text" name="post1">Post text 1</textarea>
		  <textarea type="text" name="post2">Post text 2</textarea>
	 	  </body></html>`

	re := regexp.MustCompile(`<textarea.*?>(.*)</textarea>`)

	match := re.FindAllStringSubmatch(s, -1)
	for _, element := range match {
		fmt.Println(element[1])
	}
}




/*
run:

Post text 1
Post text 2

*/

 



answered Aug 26, 2020 by avibootz

Related questions

...