A
Ahmet Kilic
This a C++ class name,
const std::string DRAPBase::CLASS_NAME = "DRAPBase";
I am writing like this
classname = text.scan(/::CLASS_NAME = (.*?)\s+";/)
but it is not true.
how can I get the class name with regex?
const std::string DRAPBase::CLASS_NAME = "DRAPBase";
I am writing like this
classname = text.scan(/::CLASS_NAME = (.*?)\s+";/)
but it is not true.
how can I get the class name with regex?