Navigation
API > API/Runtime > API/Runtime/CoreUObject > API/Runtime/CoreUObject/FPackageName
Overloads
| Name | Remarks | Include Path | Unreal Specifiers |
|---|---|---|---|
static bool ParseExportTextPath
(
FWideStringView InExportTextPath, |
Converts the supplied export text path to an object path and class name. | Misc/PackageName.h | |
static bool ParseExportTextPath
(
FAnsiStringView InExportTextPath, |
Misc/PackageName.h | ||
static bool ParseExportTextPath
(
const FString& InExportTextPath, |
Misc/PackageName.h | ||
static bool ParseExportTextPath
(
const TCHAR* InExportTextPath, |
Misc/PackageName.h |
ParseExportTextPath(FWideStringView, FWideStringView , FWideStringView )
Description
Converts the supplied export text path to an object path and class name.
| Name | ParseExportTextPath |
| Type | function |
| Header File | /Engine/Source/Runtime/CoreUObject/Public/Misc/PackageName.h |
| Include Path | #include "Misc/PackageName.h" |
| Source | /Engine/Source/Runtime/CoreUObject/Private/Misc/PackageName.cpp |
static bool ParseExportTextPath
(
FWideStringView InExportTextPath,
FWideStringView * OutClassName,
FWideStringView * OutObjectPath
)
True if the supplied export text path could be parsed
Parameters
| Name | Remarks |
|---|---|
| InExportTextPath | The export text path for an object. Takes on the form: ClassName'ObjectPath' |
| OutClassName | The name of the class at the start of the path. |
| OutObjectPath | The path to the object. |
ParseExportTextPath(FAnsiStringView, FAnsiStringView , FAnsiStringView )
| Name | ParseExportTextPath |
| Type | function |
| Header File | /Engine/Source/Runtime/CoreUObject/Public/Misc/PackageName.h |
| Include Path | #include "Misc/PackageName.h" |
| Source | /Engine/Source/Runtime/CoreUObject/Private/Misc/PackageName.cpp |
static bool ParseExportTextPath
(
FAnsiStringView InExportTextPath,
FAnsiStringView * OutClassName,
FAnsiStringView * OutObjectPath
)
ParseExportTextPath(const FString &, FString , FString )
| Name | ParseExportTextPath |
| Type | function |
| Header File | /Engine/Source/Runtime/CoreUObject/Public/Misc/PackageName.h |
| Include Path | #include "Misc/PackageName.h" |
| Source | /Engine/Source/Runtime/CoreUObject/Private/Misc/PackageName.cpp |
static bool ParseExportTextPath
(
const FString & InExportTextPath,
FString * OutClassName,
FString * OutObjectPath
)
ParseExportTextPath(const TCHAR , FStringView , FStringView *)
| Name | ParseExportTextPath |
| Type | function |
| Header File | /Engine/Source/Runtime/CoreUObject/Public/Misc/PackageName.h |
| Include Path | #include "Misc/PackageName.h" |
| Source | /Engine/Source/Runtime/CoreUObject/Private/Misc/PackageName.cpp |
static bool ParseExportTextPath
(
const TCHAR * InExportTextPath,
FStringView * OutClassName,
FStringView * OutObjectPath
)