cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 
The Discovery Summit 2025 Call for Content is open! Submit an abstract today to present at our premier analytics conference.
See how to use JMP Live to centralize and share reports within groups. Webinar with Q&A April 4, 2pm ET.
Choose Language Hide Translation Bar
View Original Published Thread

How do I write a script to recode to remove partial text?

KRT
KRT
Level II

I am trying to write a script that converts any occurrence where a number is within the text "saturated ()", to remove the saturated (), leaving only the number.  I thought I could edit a recode script, but had no success.  Thank you in advance.

 

Names Default To Here( 1 );
dt = Data Table( "Book1_Sheet1" );
dt << Begin Data Update;
dt << Recode Column(
    dt:Area,
    {Map Value(
        _rcOrig,
        {"saturated( ######### )", "#########"},
        Unmatched( _rcNow )
    )},
    Update Properties( 1 ),
    Target Column( :Area )
);
dt << End Data Update;
2 REPLIES 2


Re: How do I write a script to recode to remove partial text?

Try this. I tried to write the regular expression to recognize any correctly formatted number and ignore blanks or incorrectly formatted numbers.

 

Names Default To Here( 1 );
dt = Data Table( "Book1_Sheet1" );
dt << Begin Data Update;
dt << Recode Column(
	dt:Area,
	{Regex(
		_rcNow,
		"^saturated\((\-*)([\d\.]+)([eE]*)(\-*)(\d*)\)",
		"\1\2\3\4\5",
		GLOBALREPLACE
	)},
	Update Properties( 1 ),
	Target Column( :Area )
);
dt << End Data Update;

 

 

txnelson
Super User


Re: How do I write a script to recode to remove partial text?

Here is one way to change the values

Names Default To Here( 1 );
dt = Data Table( "Book1_Sheet1" );

For Each Row(
	If( Left( :Area, 10 ) == "saturated(",
		:Area == Word( 2, :Area, "()" )
	)
);
Jim