Please Log in or Create an account to join the conversation.
Please Log in or Create an account to join the conversation.
The dot matches a single character, without caring what that character is. The only exception are newline characters. In all regex flavors discussed in this tutorial, the dot will not match a newline character by default. So by default, the dot is short for the negated character class [^\n] (UNIX regex flavors) or [^\r\n] (Windows regex flavors).
Please Log in or Create an account to join the conversation.
I still not able to avoid, or even better remove, line-breaks in a CB Textfield? Can you help my?You should configure it to use Multiple words with spacing to achieve what you're wanting.
Please Log in or Create an account to join the conversation.