2.8K
How to convert from sObject to String using Salesforce Apex Class
To convert sObject to String in Apex, below i s the example,
Example:
public sObject searchContact;
String strObjType = String.valueOf(searchContact);