regular expression in formapi
Comments
-
The regex before doesn't make sense for zeichen=... my text .., it's only an example for using regex in Javascript:
here is a working one
var zeichen = "my regextext";
var x = /(.*)\s+(.*)/;
x.exec(zeichen);
var name = RegExp.$1;
var text = RegExp.$2;
where name = my and text = regextext
the same in perl is:
$zeichen = "my regextext";
$zeichen =~ /(.*)\s+(.*)/;
$name = $1;
$text = $2;
--Jens0 -
A good quick-reference site is: www.devguru.com
They have sections on Javascript, ASP, VBScript, CSS, and others.
This site wouldn't be real helpful if you've never used these languages, but as a quick-reference its great.
Jonathon
Independent Interwoven Contractor0
Categories
- All Categories
- 124 Developer Announcements
- 54 Articles
- 156 General Questions
- 155 Thrust Services
- 56 Developer Hackathon
- 38 Thrust Studio
- 20.6K Analytics
- 4.2K AppWorks
- 9.1K Extended ECM
- 920 Core Messaging
- 84 Digital Asset Management
- 9.4K Documentum
- 35 eDOCS
- 195 Exstream
- 39.8K TeamSite
- 1.7K Web Experience Management
- 11 XM Fax
- Follow Categories
TeamSite Developer Resources
If you are interested in gaining full access to the content, you can register for a My Support account here.
- Docker Automation
- LiveSite Content Services (LSCS) REST API
- Single Page Application (SPA) Modules
- TeamSite Add-ons
If you are interested in gaining full access to the content, you can register for a My Support account here.