Science fiction turns into a truth! We can now interact and use things we have been used to observing in movies every day.
Just one of the new innovative technologies is ChatGPT, which will transform how we work A Whole lot!
As a programmer, I initially didn’t consider that it could clear up highly developed jobs, but was amazed by seeing how useful it can be in my day-to-day lifestyle. So I begun actively playing around and found the methods I have found it helpful and wished to share.
Here are five ChatGPT examples and handy methods Search engine optimisation professionals and entrepreneurs can use it for everyday marketing duties.
Compose Standard Expressions In Analytics Reporting
Common expressions can be applied in composing analytic experiences this kind of as Google Look for Console or Google Analytics. Standard expressions are one particular of the most unexciting tasks I know, and it may well truly sluggish down operate. For marketers, it is even harder, as they really do not have a technical background.
Let us look at an instance of GSC’s reporting, which supports filtering by regexp.

If you are a marketer with no specialized qualifications, you may possibly locate it really hard to use this attribute and limit oneself to the number of primary regexps which you can locate by exploring dev-connected forums.
Now you have ChatGPT at your disposal!
Just go to ChatGPT and request: “compose typical expression which starts with “How To” or “What is” case insensitive employing RE2 syntax
”

Yup!
(?i)^(?:How To|What is)
It bought the job done instantaneously. Just duplicate and paste in the GSC’s filter area, and you will have all the queries which are candidates to optimize for FAQ or HowTo schema.

Really quick, is not it?
You can use it to compose regexp for GA stories as properly. For case in point, let us say you want to filter a report which has in the URL words and phrases “Samsung” and “phone”. Just check with ChatGPT “compose frequent expression which consists of words “Samsung” and “phone” situation insensitive employing RE2 syntax
”.
Just to observe, it is significant to point out “RE2 syntax” in the command, as Google’s reporting dashboards guidance that syntax.
Compose Advanced Spreadsheet Formulas
Every person will work with Excel or Google Sheets. It is in everyone’s daily perform life, and you know how it is occasionally rough to compose spreadsheet formulation as you need to do investigate to uncover the functionality identify you will need and then spend 10-15minutes in figuring out how to make it function.
Now it just requires you to inquire ChatGPT a command like: “Google Sheet formula which copies all rows from sheet1 wherever column "A" consists of phrase "apple iphone"
“.
And it did not just take prolonged to get the option.

But, the components it gave =Query(Sheet1!A:Z, "Find * Where by A Includes 'iphone'", "Sheet2!A1")
has a compact mistake. Of system, ChatGPT doesn’t often provide 100% appropriate responses. You ought to test sometimes and fix it manually. The method I obtained is 99% right, except the 3rd parameter should not be there. So I removed it manually and now have =Question(Sheet1!A:Z, "Find * Where by A Contains 'iphone'")
which will work completely!
Set up Personalized Pixel Conversions
If you are a PPC marketer or an Search engine marketing professional who needs to established up tailor made conversions when people carry out specified actions on the web page but really do not have a website developer’s support, it could be rather demanding in some conditions. Indeed, you can use Google Tag Supervisor in lots of scenarios when customers click on the url, but you could will need smth. unique, which is not a crafted-in element of GTM.
For case in point, you require to send out a conversion event when one particular lands on your landing web page and scrolls via 35% of the web page. Now you don’t require to hire a developer to get the career carried out. Just go to ChatGPT and talk to: “send out Fb pixel personalized conversion event when as customers scroll by 35% of the site employing JavaScript
” and it will do the magic!

You can duplicate and paste this code in your
tag of HTML, and you are done. If you have a WordPress website, you can use plugins these WPCode to make the career simpler. Alternatively, you can use Google Tag Manager customized HTML tag to add your JavaScript code there.It saves you time to obtain a developer for little day-to-day jobs you have or even if you have a dev. workforce, you can significantly cut down their workload by doing it by yourself.
Optimize FAQ and Showcased Snippets
Web optimization pros may possibly need aid obtaining associated inquiries from users to improve written content for a specific key word. You can use ChatGPT to get these associated queries to make your information much more valuable. If you have a travel blog site, you may ask: connected concerns with regards to "cozy cities in Germany"
and ChatGPT will attract many queries which genuinely make feeling.

Of study course, there may well be types that never make sense, but they will do 90% of the career. The concerns it implies may perhaps not have any lookup volume, but it is even now well worth likely immediately after them for the reason that zero-lookup volume keywords could travel major traffic.
Fetch Info from APIs and Coding
Let us say you have a WooCommerce Retail outlet and want to fetch all items you have with their charges into a Google Sheet. Now you can merely check with: “google application script which fetches all products names and selling prices from WooCommerce Relaxation API and provides into a spreadsheet
” and you are finished.
It gave me a totally practical code:
function fetchProducts()
var url = "https://yourshop.com/wp-json/wc/v3/products"
var options =
"process": "get",
"headers":
"Authorization": "Basic " + Utilities.foundation64Encode("YOUR_Purchaser_Vital:YOUR_Buyer_Key")
var response = UrlFetchApp.fetch(url, options)
var json = JSON.parse(reaction.getContentText())
for (var i = 0 i < json.length i++) 
var name = json[i].name
var price = json[i].price
// Do something with the product name and price

var sheet = SpreadsheetApp.getActiveSheet()
for (var i = 0 i < json.length i++) 
var name = json[i].name
var price = json[i].price
sheet.appendRow([name, price])

It sometimes may give a code with a small error that you need to fix manually, like in the above example of the Google Spreadsheet formula.
The coding ability of ChatGPT is going to be especially useful when working with Zapier. If you have ever used Zapier, you know it has a Zap called “code,” which is for advanced users. If you have data in a certain ugly format that needs to be fixed now, you can just ask ChatGPT to fix it, and use it in Zapier custom code to clean up the data.
Conclusion
There are talks that ChatGPT is going to replace humans, and many professions are just going to die out. In my personal opinion, it will not happen, but it will make life easier in different industries and professional fields.
More resources:
Featured Image: ParinPix/Shutterstock