Js regularly gets the characters you want.

for example, the string is
var str = "ul_one" / / ul_one
or
var str =" ul_one " / / ul_one
var str = " ul_two " / / ul_two
where ul_one may be ul_two and ul_three
can ul_one be taken out with a regular?

Mar.05,2021

var str = 'haha ul_one haha'
var reg= /ul_one?/g
reg.exec(str)
//["ul_one", index: 5, input: "haha ul_one haha"]

/ul_.+?\b/.exec("haha ul_ooxxox dasd");
//["ul_ooxxox", index: 5, input: "haha ul_ooxxox dasd", groups: undefined]
MySQL Query : SELECT * FROM `codeshelper`.`v9_news` WHERE status=99 AND catid='6' ORDER BY rand() LIMIT 5
MySQL Error : Disk full (/tmp/#sql-temptable-64f5-1b3852c-e654.MAI); waiting for someone to free some space... (errno: 28 "No space left on device")
MySQL Errno : 1021
Message : Disk full (/tmp/#sql-temptable-64f5-1b3852c-e654.MAI); waiting for someone to free some space... (errno: 28 "No space left on device")
Need Help?