i have a string
s= The POST variable NM_xwTapCtl%24_img_Banner is vulnerable.,The POST variable NM_xwTapCtl%24scrollTop is vulnerable.

I dont know the procedure to modify that s to

s = NM_xwTapCtl%24_img_Banner,NM_xwTapCtl%24scrollTop


HELP ME PLEASE!!!!!!!!!!!!!! ( i think search for The Post Variable and display the next word ,after that again search if i have characters if got the same procedure...)

From your descriptions, it seems like you just want to strip "POST" and "is vulnerable.". Can't you just do

s= s.replace("POST","").replace("is vulnerable.","")

?

Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.