Hi @vallamreddyvenu and @sagirkazi and @RezaDorrani,
We're struggling with this as well. We keep getting the error "Fetching items failed. Possible invalid string in filter query." We haven't been able to find a great Microsoft-published reference that clearly outlines the allowed syntax for OData filter queries in Power Automate. We're actually unsure which API the SharePoint Get Items action even uses:
not(startswith(My_x0020_Text_x0020_Column,'myText')) - doesn't work
not startswith(My_x0020_Text_x0020_Column,'myText') - doesn't work
startswith(My_x0020_Text_x0020_Column,'myText') - works

After a bunch of searching, we finally happened upon the following which seems to indicate OData filtering is limited in the SharePoint Get Items action:
https://learn.microsoft.com/en-us/sharepoint/dev/business-apps/power-automate/guidance/working-with-get-items-and-get-files#filter-queries
Maybe there's a way to use the Send SharePoint HTTP Request to allow access to more OData options and return select items from a list using the "not startswith" option.