Hi,
i am using an expression below for a sp list connected text box control.
Below is the expression syntax:
"KL-" & DataCardValue35.Selected.Value & DataCardValue36.Selected.Value &"-" & Concat(MatchAll(DataCardValue10.Text, "\p{L}+"),FullMatch)
the matchall works perfect and does not allow special characters as well as white space but I need to include numbers/digits from 0-9. Can someone help how I should modify to allow numbers? Many thanks in advance.
Solved! Go to Solution.
Tweaking one of the samples:
Concat(
MatchAll(
DataCardValue10.Text,
"(?!^[0-9]\*$)(?!^[a-zA-Z]\*$)([a-zA-Z0-9])"
),
FullMatch
)
This was the 'strong password' example, without the 8-10 character requirement. This will require an alphabet character, and a digit, but could be tweaked as needed.
Tweaking one of the samples:
Concat(
MatchAll(
DataCardValue10.Text,
"(?!^[0-9]\*$)(?!^[a-zA-Z]\*$)([a-zA-Z0-9])"
),
FullMatch
)
This was the 'strong password' example, without the 8-10 character requirement. This will require an alphabet character, and a digit, but could be tweaked as needed.
Hi @Anonymous ,
Has the problem been solved?
Is there anything else I can help?
Best Regards,
Wearsky
The first Microsoft-sponsored Power Platform Conference is coming in September. 100+ speakers, 150+ sessions, and what's new and next for Power Platform.
This training provides practical hands-on experience in creating Power Apps solutions in a full-day of instructor-led App creation workshop.
User | Count |
---|---|
192 | |
45 | |
43 | |
38 | |
35 |
User | Count |
---|---|
262 | |
83 | |
81 | |
70 | |
69 |