문제

I'm trying to find a regular expression allowing all lowercase characters, including some special ones: ŋ, č, đ, á, ž, š, ŧ.

도움이 되었습니까?

해결책

For all lower case characters you can have this regex

[a-z]*

For the special ones in a phrase u can try

[a-zA-Z]*č[a-zA-Z]*

The regex above is just an example of a foreign case

Of course that if you want to be more complex and experiment with numbers it just needs tweeks.

It's very simple really

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top