Angular: regular expression logic
I'm developing a web application using Angular 6. I have a question:
I'm creating a custom input component (for text input) such as:
@Component({
selector: 'input-text',
templateUrl: './input-text.component.html'
]
})
export class InputTextComponent {
@Input() pattern?: string;
}
I would like a user can insert a regular expression for the validation of the input field, in this way:
<input-text pattern="^[a-z0-9_-]{8,15}$"></input-text>
The template of my component is defined like this:
<input type="text" [attr.pattern]="pattern"/>
Unfortunately I know absolutely nothing about regular expressions.
I would like to do two things:
1 - Create a method that checks the validity of the regular expression and changes the visual style.
2 - Make sure that if the input (with a pattern
field) is inserted into a form, the attribute form.valid
remains false until the expression is valid.
Thanks for your help!
regex angular typescript components
add a comment |
I'm developing a web application using Angular 6. I have a question:
I'm creating a custom input component (for text input) such as:
@Component({
selector: 'input-text',
templateUrl: './input-text.component.html'
]
})
export class InputTextComponent {
@Input() pattern?: string;
}
I would like a user can insert a regular expression for the validation of the input field, in this way:
<input-text pattern="^[a-z0-9_-]{8,15}$"></input-text>
The template of my component is defined like this:
<input type="text" [attr.pattern]="pattern"/>
Unfortunately I know absolutely nothing about regular expressions.
I would like to do two things:
1 - Create a method that checks the validity of the regular expression and changes the visual style.
2 - Make sure that if the input (with a pattern
field) is inserted into a form, the attribute form.valid
remains false until the expression is valid.
Thanks for your help!
regex angular typescript components
add a comment |
I'm developing a web application using Angular 6. I have a question:
I'm creating a custom input component (for text input) such as:
@Component({
selector: 'input-text',
templateUrl: './input-text.component.html'
]
})
export class InputTextComponent {
@Input() pattern?: string;
}
I would like a user can insert a regular expression for the validation of the input field, in this way:
<input-text pattern="^[a-z0-9_-]{8,15}$"></input-text>
The template of my component is defined like this:
<input type="text" [attr.pattern]="pattern"/>
Unfortunately I know absolutely nothing about regular expressions.
I would like to do two things:
1 - Create a method that checks the validity of the regular expression and changes the visual style.
2 - Make sure that if the input (with a pattern
field) is inserted into a form, the attribute form.valid
remains false until the expression is valid.
Thanks for your help!
regex angular typescript components
I'm developing a web application using Angular 6. I have a question:
I'm creating a custom input component (for text input) such as:
@Component({
selector: 'input-text',
templateUrl: './input-text.component.html'
]
})
export class InputTextComponent {
@Input() pattern?: string;
}
I would like a user can insert a regular expression for the validation of the input field, in this way:
<input-text pattern="^[a-z0-9_-]{8,15}$"></input-text>
The template of my component is defined like this:
<input type="text" [attr.pattern]="pattern"/>
Unfortunately I know absolutely nothing about regular expressions.
I would like to do two things:
1 - Create a method that checks the validity of the regular expression and changes the visual style.
2 - Make sure that if the input (with a pattern
field) is inserted into a form, the attribute form.valid
remains false until the expression is valid.
Thanks for your help!
regex angular typescript components
regex angular typescript components
asked Nov 20 '18 at 15:29
claudiozclaudioz
145212
145212
add a comment |
add a comment |
1 Answer
1
active
oldest
votes
- Check regex validity
You can simply catch exceptions thrown by the RegExp constructor when instanciating it.
try {
const regex = new RegExp(pattern);
} catch (error) {
// If it goes here, then the regex model is not correct
console.error(error.message)
}
- Change the visual style
You can simply use the ngClass attribute to change your input style.
If you enter the catch
statement, set a style variable to change the class like so
private hasBadInput: boolean;
// [...]
catch (error) {
hasBadInput= true;
}
Then apply a specific class in that case:
<input-text [ngClass]="{'yourErrorClass': hasBadInput}"><input-text>
- Form validity
You did well using [attr.pattern]
, the form should automatically consider the entered pattern. You should try your form with a hard written regex before, and then use the input one.
Follow this official guideline to create Angular 2+ forms.
Thanks! I have a question: in the first code (try-catch), nothing is happening. How do I compare a string with a regular expression?
– claudioz
Nov 20 '18 at 16:08
1
If you don't have any errors into your Regex, nothing will happen specifically. Try something like '//(', you should have an exception rising and go to the catch. For more about RegExp object, please refer to the doc : developer.mozilla.org/fr/docs/Web/JavaScript/Reference/…
– Kapcash
Nov 20 '18 at 16:12
add a comment |
Your Answer
StackExchange.ifUsing("editor", function () {
StackExchange.using("externalEditor", function () {
StackExchange.using("snippets", function () {
StackExchange.snippets.init();
});
});
}, "code-snippets");
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "1"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53396321%2fangular-regular-expression-logic%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
- Check regex validity
You can simply catch exceptions thrown by the RegExp constructor when instanciating it.
try {
const regex = new RegExp(pattern);
} catch (error) {
// If it goes here, then the regex model is not correct
console.error(error.message)
}
- Change the visual style
You can simply use the ngClass attribute to change your input style.
If you enter the catch
statement, set a style variable to change the class like so
private hasBadInput: boolean;
// [...]
catch (error) {
hasBadInput= true;
}
Then apply a specific class in that case:
<input-text [ngClass]="{'yourErrorClass': hasBadInput}"><input-text>
- Form validity
You did well using [attr.pattern]
, the form should automatically consider the entered pattern. You should try your form with a hard written regex before, and then use the input one.
Follow this official guideline to create Angular 2+ forms.
Thanks! I have a question: in the first code (try-catch), nothing is happening. How do I compare a string with a regular expression?
– claudioz
Nov 20 '18 at 16:08
1
If you don't have any errors into your Regex, nothing will happen specifically. Try something like '//(', you should have an exception rising and go to the catch. For more about RegExp object, please refer to the doc : developer.mozilla.org/fr/docs/Web/JavaScript/Reference/…
– Kapcash
Nov 20 '18 at 16:12
add a comment |
- Check regex validity
You can simply catch exceptions thrown by the RegExp constructor when instanciating it.
try {
const regex = new RegExp(pattern);
} catch (error) {
// If it goes here, then the regex model is not correct
console.error(error.message)
}
- Change the visual style
You can simply use the ngClass attribute to change your input style.
If you enter the catch
statement, set a style variable to change the class like so
private hasBadInput: boolean;
// [...]
catch (error) {
hasBadInput= true;
}
Then apply a specific class in that case:
<input-text [ngClass]="{'yourErrorClass': hasBadInput}"><input-text>
- Form validity
You did well using [attr.pattern]
, the form should automatically consider the entered pattern. You should try your form with a hard written regex before, and then use the input one.
Follow this official guideline to create Angular 2+ forms.
Thanks! I have a question: in the first code (try-catch), nothing is happening. How do I compare a string with a regular expression?
– claudioz
Nov 20 '18 at 16:08
1
If you don't have any errors into your Regex, nothing will happen specifically. Try something like '//(', you should have an exception rising and go to the catch. For more about RegExp object, please refer to the doc : developer.mozilla.org/fr/docs/Web/JavaScript/Reference/…
– Kapcash
Nov 20 '18 at 16:12
add a comment |
- Check regex validity
You can simply catch exceptions thrown by the RegExp constructor when instanciating it.
try {
const regex = new RegExp(pattern);
} catch (error) {
// If it goes here, then the regex model is not correct
console.error(error.message)
}
- Change the visual style
You can simply use the ngClass attribute to change your input style.
If you enter the catch
statement, set a style variable to change the class like so
private hasBadInput: boolean;
// [...]
catch (error) {
hasBadInput= true;
}
Then apply a specific class in that case:
<input-text [ngClass]="{'yourErrorClass': hasBadInput}"><input-text>
- Form validity
You did well using [attr.pattern]
, the form should automatically consider the entered pattern. You should try your form with a hard written regex before, and then use the input one.
Follow this official guideline to create Angular 2+ forms.
- Check regex validity
You can simply catch exceptions thrown by the RegExp constructor when instanciating it.
try {
const regex = new RegExp(pattern);
} catch (error) {
// If it goes here, then the regex model is not correct
console.error(error.message)
}
- Change the visual style
You can simply use the ngClass attribute to change your input style.
If you enter the catch
statement, set a style variable to change the class like so
private hasBadInput: boolean;
// [...]
catch (error) {
hasBadInput= true;
}
Then apply a specific class in that case:
<input-text [ngClass]="{'yourErrorClass': hasBadInput}"><input-text>
- Form validity
You did well using [attr.pattern]
, the form should automatically consider the entered pattern. You should try your form with a hard written regex before, and then use the input one.
Follow this official guideline to create Angular 2+ forms.
answered Nov 20 '18 at 15:49


KapcashKapcash
1,2341619
1,2341619
Thanks! I have a question: in the first code (try-catch), nothing is happening. How do I compare a string with a regular expression?
– claudioz
Nov 20 '18 at 16:08
1
If you don't have any errors into your Regex, nothing will happen specifically. Try something like '//(', you should have an exception rising and go to the catch. For more about RegExp object, please refer to the doc : developer.mozilla.org/fr/docs/Web/JavaScript/Reference/…
– Kapcash
Nov 20 '18 at 16:12
add a comment |
Thanks! I have a question: in the first code (try-catch), nothing is happening. How do I compare a string with a regular expression?
– claudioz
Nov 20 '18 at 16:08
1
If you don't have any errors into your Regex, nothing will happen specifically. Try something like '//(', you should have an exception rising and go to the catch. For more about RegExp object, please refer to the doc : developer.mozilla.org/fr/docs/Web/JavaScript/Reference/…
– Kapcash
Nov 20 '18 at 16:12
Thanks! I have a question: in the first code (try-catch), nothing is happening. How do I compare a string with a regular expression?
– claudioz
Nov 20 '18 at 16:08
Thanks! I have a question: in the first code (try-catch), nothing is happening. How do I compare a string with a regular expression?
– claudioz
Nov 20 '18 at 16:08
1
1
If you don't have any errors into your Regex, nothing will happen specifically. Try something like '//(', you should have an exception rising and go to the catch. For more about RegExp object, please refer to the doc : developer.mozilla.org/fr/docs/Web/JavaScript/Reference/…
– Kapcash
Nov 20 '18 at 16:12
If you don't have any errors into your Regex, nothing will happen specifically. Try something like '//(', you should have an exception rising and go to the catch. For more about RegExp object, please refer to the doc : developer.mozilla.org/fr/docs/Web/JavaScript/Reference/…
– Kapcash
Nov 20 '18 at 16:12
add a comment |
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53396321%2fangular-regular-expression-logic%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown