JavaScript RegExp source attribute
- Trang trước multiline
- Trang tiếp theo compile()
- Quay lại lớp trên Sách tham khảo JavaScript RegExp
Definition and usage
source
The property returns the text of the RegExp pattern.
description
RegExp object properties source
It is a read-only string. It stores the text of the RegExp pattern. This text does not include the delimiters used directly in regular expressions, nor does it include the flags g, i, m.
example
let text = "Visit CodeW3C.com"; let pattern = /W3S/g; let result = pattern.source;
syntax
regexp.source
return value
type | description |
---|---|
string | RegExp patterns text. |
browser supports
source
Là tính năng của ECMAScript1 (ES1).
Tất cả các trình duyệt đều hỗ trợ hoàn toàn ES1 (JavaScript 1997):
Chrome | IE | Edge | Firefox | Safari | Opera |
---|---|---|---|---|---|
Hỗ trợ | Hỗ trợ | Hỗ trợ | Hỗ trợ | Hỗ trợ | Hỗ trợ |
- Trang trước multiline
- Trang tiếp theo compile()
- Quay lại lớp trên Sách tham khảo JavaScript RegExp