Розмір відео: 1280 X 720853 X 480640 X 360
Показувати елементи керування програвачем
Автоматичне відтворення
Автоповтор
Thank you so much please upload flow related scenarios
@@naresfdc sorry didnt get you, flow related scenarios in apex?
Welcome back sir hope you are fine 🙂
@@sumitB-h8t i am better my friend, thank you.
Fantastic Content! Your explanations are so clear and easy to understand. Thank you for sharing such valuable SF content. Do we have Asyn Apex in this masterclass in coming videos?
@@rishabhgupta7636 thank you, yes it is in the curriculum!
public static String useCase13(String emailAddress) { String fullName = ''; String extractedName = emailAddress.substringBefore('@'); String firstName = extractedName.substringBefore('_'); String LastName = extractedName.substringAfter('_'); fullName = firstName + ' ' + lastName; return fullName; } I have done it like this.
Looks good, you used two different string functions which is also feasible if data is consistent.
Thank you so much please upload flow related scenarios
@@naresfdc sorry didnt get you, flow related scenarios in apex?
Welcome back sir hope you are fine 🙂
@@sumitB-h8t i am better my friend, thank you.
Fantastic Content! Your explanations are so clear and easy to understand. Thank you for sharing such valuable SF content. Do we have Asyn Apex in this masterclass in coming videos?
@@rishabhgupta7636 thank you, yes it is in the curriculum!
public static String useCase13(String emailAddress) {
String fullName = '';
String extractedName = emailAddress.substringBefore('@');
String firstName = extractedName.substringBefore('_');
String LastName = extractedName.substringAfter('_');
fullName = firstName + ' ' + lastName;
return fullName;
} I have done it like this.
Looks good, you used two different string functions which is also feasible if data is consistent.