Navigation
API > API/Runtime > API/Runtime/Core > API/Runtime/Core/FDefaultValueHelper
Overloads
| Name | Remarks | Include Path | Unreal Specifiers |
|---|---|---|---|
static bool IsStringValidInteger
(
const FString& Source |
Following functions accept c++ style representations of numbers. | Misc/DefaultValueHelper.h | |
static bool IsStringValidInteger
(
const TCHAR* Start, |
Misc/DefaultValueHelper.h | ||
static bool IsStringValidInteger
(
const TCHAR* Start, |
Return if the string can be parse to an int. OutBase is the base of the integer (8, 10, 16) | Misc/DefaultValueHelper.h |
IsStringValidInteger(const FString &)
Description
Following functions accept c++ style representations of numbers. e.g. 13.5e-2f for float or -0x123 for int
| Name | IsStringValidInteger |
| Type | function |
| Header File | /Engine/Source/Runtime/Core/Public/Misc/DefaultValueHelper.h |
| Include Path | #include "Misc/DefaultValueHelper.h" |
| Source | /Engine/Source/Runtime/Core/Private/Misc/DefaultValueHelper.cpp |
static bool IsStringValidInteger
(
const FString & Source
)
IsStringValidInteger(const TCHAR , const TCHAR )
| Name | IsStringValidInteger |
| Type | function |
| Header File | /Engine/Source/Runtime/Core/Public/Misc/DefaultValueHelper.h |
| Include Path | #include "Misc/DefaultValueHelper.h" |
| Source | /Engine/Source/Runtime/Core/Private/Misc/DefaultValueHelper.cpp |
static bool IsStringValidInteger
(
const TCHAR * Start,
const TCHAR * End
)
IsStringValidInteger(const TCHAR , const TCHAR , int32 &)
Description
Return if the string can be parse to an int. OutBase is the base of the integer (8, 10, 16)
| Name | IsStringValidInteger |
| Type | function |
| Header File | /Engine/Source/Runtime/Core/Public/Misc/DefaultValueHelper.h |
| Include Path | #include "Misc/DefaultValueHelper.h" |
| Source | /Engine/Source/Runtime/Core/Private/Misc/DefaultValueHelper.cpp |
static bool IsStringValidInteger
(
const TCHAR * Start,
const TCHAR * End,
int32 & OutBase
)