I need a regex character that will return me any kind of character. Like with (?<=Points)\w+(?=\<\/p\>) \w only gets certain kinds of results, I need to get ANY Character including spaces. Does anyone know what it could be? Thanks
Printable View
I need a regex character that will return me any kind of character. Like with (?<=Points)\w+(?=\<\/p\>) \w only gets certain kinds of results, I need to get ANY Character including spaces. Does anyone know what it could be? Thanks
Try
.*
Thats what i am lookig for thank you, BUT it is showing blank spaces as @ is there anyway to prevent this and just make it show a space? Thank you
try this [.\n]*
only . does not include the new line character \n.