Size: a a a

2019 December 28

JS

Jaivik Shah in Uipath RPA
Photo from Netshah
источник

JS

Jaivik Shah in Uipath RPA
Can anyone help me to resolve this error?
источник

V

Vivek in Uipath RPA
How can we extract process end time from queue?
источник

O

Oleg in Uipath RPA
Do you really want to
источник
2019 December 29

MK

Max Korsakov in Uipath RPA
@Netshah show us selector for "Get Full Text" activity
источник

JS

Jaivik Shah in Uipath RPA
Max Korsakov
@Netshah show us selector for "Get Full Text" activity
Thanks acknowledge...
Issue resolved now
источник

MK

Max Korsakov in Uipath RPA
Jaivik Shah
Thanks acknowledge...
Issue resolved now
How?
источник
2019 December 30

JS

Jaivik Shah in Uipath RPA
Max Korsakov
How?
I selected text with mouse pointer that's why...
Instead of that I tried with "indicate on screen"
источник

MK

Max Korsakov in Uipath RPA
Jaivik Shah
I selected text with mouse pointer that's why...
Instead of that I tried with "indicate on screen"
Thnx.
источник

JS

Jaivik Shah in Uipath RPA
Max Korsakov
Thnx.
You know how to split FullName string into First name, Middle name and last name Chunks of string?
источник

А

Алексей in Uipath RPA
Jaivik Shah
You know how to split FullName string into First name, Middle name and last name Chunks of string?
Regexp and split functions
источник

А

Алексей in Uipath RPA
Split:
Example: Strings.Split("My custom string", " ")
Result: {"My", "custom", "string"}
источник

MK

Max Korsakov in Uipath RPA
Jaivik Shah
You know how to split FullName string into First name, Middle name and last name Chunks of string?
Split function is easy way.
FullName.Split(" "c) returns set substrings.
источник

А

Алексей in Uipath RPA
RegExp:
Example: regex.Match("My custom string", "(\w+¦\w+\s*-\s*\w+)\s+(\w+)\s+(\w+)", regexOptions.IgnoreCase)
Result: {
Group(0) = "My custom string"
Group(1) = "My"
Group(2) = "custom"
Group(3) = "string"
}
источник

O

Oleg in Uipath RPA
Алексей
RegExp:
Example: regex.Match("My custom string", "(\w+¦\w+\s*-\s*\w+)\s+(\w+)\s+(\w+)", regexOptions.IgnoreCase)
Result: {
Group(0) = "My custom string"
Group(1) = "My"
Group(2) = "custom"
Group(3) = "string"
}
\w* returns ok for empty string.
So you can't parse the name with 2 spaces between first name and second name.
источник

O

Oleg in Uipath RPA
You need to replace \s to \s+
And first \w* to \w+, at least.
источник

А

Алексей in Uipath RPA
Max Korsakov
Split function is easy way.
FullName.Split(" "c) returns set substrings.
Yes, this is easy solution, but...

IF  FullName contains many spaces, or double name?🤔

For Example:
"Mary   Elizabeth    Smith"
Result: {
"Mary",
" ",
"Elizabeth",
" ",
" ",
"Smith",
" "
}

or

Example: "Mary - Elizabeth  Smith"
Result: {
"Mary",
"-",
"Elizabeth",
" ",
"Smith"
}

If only through the cycle -> not String.IsNullOrEmpty
источник

А

Алексей in Uipath RPA
Oleg
\w* returns ok for empty string.
So you can't parse the name with 2 spaces between first name and second name.
Yes, I know. This is just an example of how to use. A pattern is needed as needed😊
источник

JS

Jaivik Shah in Uipath RPA
Алексей
Yes, this is easy solution, but...

IF  FullName contains many spaces, or double name?🤔

For Example:
"Mary   Elizabeth    Smith"
Result: {
"Mary",
" ",
"Elizabeth",
" ",
" ",
"Smith",
" "
}

or

Example: "Mary - Elizabeth  Smith"
Result: {
"Mary",
"-",
"Elizabeth",
" ",
"Smith"
}

If only through the cycle -> not String.IsNullOrEmpty
FullName should be in format :

First name " " Middle name" "Last name
источник

А

Алексей in Uipath RPA
Jaivik Shah
FullName should be in format :

First name " " Middle name" "Last name
If I did work with personal data... I would use a regular expression, because "Split" function in this case isn't a reliable solution. IMHO.😊

Why? I explained earlier...☝️
источник