[#absl-Cord-Find-00] = xref:absl.adoc[absl]::xref:absl/Cord.adoc[Cord]::Find :relfileprefix: ../../ :mrdocs: `Find` overloads == Synopses Declared in `<absl/strings/cord.h>` Returns an iterator to the first occurrence of the substring `needle`. [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- xref:absl/Cord/CharIterator.adoc[CharIterator] xref:absl/Cord/Find-06.adoc[Find](std::string_view needle) const; ---- [.small]#xref:absl/Cord/Find-06.adoc[_» more..._]# Returns an iterator to the first occurrence of the Cord `needle`. [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- xref:absl/Cord/CharIterator.adoc[CharIterator] xref:absl/Cord/Find-0d.adoc[Find](xref:absl/Cord.adoc[absl::Cord] const& needle) const; ---- [.small]#xref:absl/Cord/Find-0d.adoc[_» more..._]# == Return Value An iterator to the first occurrence, or `char_end()` if not found. == Parameters [cols="1,4"] |=== | Name| Description | *needle* | The substring to search for. |=== [.small]#Created with https://www.mrdocs.com[MrDocs]#